Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Web development and programming

191828 questions • Page 33 / 3837

( Capitalize first letter of each word ) Write the following method that returns
(Capitalize first letter of each word) Write the following method that returns a new string in which the first letter in each word is capitalized. public static void title(String …
( Chapter & Threads and Fasteners1 bla-9) The schematic thread symbol draws line
( Chapter & Threads and Fasteners1 bla-9) The schematic thread symbol draws lines at every crest and blank Fill in On 10) The simplified thread symbol usesaline to represent t…
( Converting a given date to the day number in the year) Write a python program
( Converting a given date to the day number in the year) Write a python program that prints the day number of the year, given the date is in the form month day year. For example, …
( Database Design Normalization: functional dependency ) (1). Design the schema
(Database Design Normalization: functional dependency) (1). Design the schema of relational tables for storing these patient-records, all tables in BCNF. Underline primary keys an…
( Date Class) Create a class called Date that includes three pieces of informati
(Date Class) Create a class calledDate that includes three pieces of information as datamembersa month (type int), a day (type int) and ayear (type int). Your class should have a …
( Execution time for sorting ) Write a program that obtains the execution time o
(Execution time for sorting) Write a program that obtains the execution time of selection sort, bubble sort, merge sort, quick sort, heap sort, and radix sort for input size 50,00…
( FOR C++ ) Write a program that can be used to calculate the federal tax. The t
(FOR C++ )Write a program that can be used to calculate the federal tax. The tax is calculated as follows: For single people, the standard exemption is $4,000; for married people,…
( Facebook has taken the privacy of their customers seriously, as their Chief Se
( Facebook has taken the privacy of their customers seriously, as their Chief Security Officer (CSO) Alex Stamos has stated that the company has engaged in black market purchases …
( Facebook has taken the privacy of their customers seriously, as their Chief Se
( Facebook has taken the privacy of their customers seriously, as their Chief Security Officer (CSO) Alex Stamos has stated that the company has engaged in black market purchases …
( Financial: credit card number validation ) Credit card numbers follow certain
(Financial: credit card number validation) Credit card numbers follow certain patterns. A credit card number must have between 13 and 16 digits. It must start with: ? 4 for Visa c…
( Greatest Common Divisor - Recursive Method ) Show all steps to use the pseudo
( Greatest Common Divisor - Recursive Method )             Show all steps to use the pseudo - code segment below to find the return value of the following call to recursive functi…
( I )Type in the following C program. Save it as “swap_n_add.c”. int swap_n_add(
( I )Type in the following C program. Save it as “swap_n_add.c”. int swap_n_add(int *xp, int *yp) { int x = *xp; int y = *yp; *xp = y; *yp = x; return x + y; } int main() { int a1…
( I hope I will get answer ... I need asnswer JUST in C++ programming language ,
( I hope I will get answer ... I need asnswer JUST in C++ programming language , and NOT in any other ) Write a program that read 250 numbers from an input file. If the numbers ar…
( Implement a doubly linked list ) The MyLinkedList class used in Listing 24.6 i
(Implement a doubly linked list) The MyLinkedList class used in Listing 24.6 is a one-way directional linked list that enables one-way traversal of the list. Modify the Node class…
( JAVA ) Write a JAVA program where a user plays a games of Tic Tac Toe against
( JAVA ) Write a JAVA program where a user plays a games of Tic Tac Toe against the computer, and tries to remains undefeated for as long as possible. The program should display t…
( JAVA ) public class Rectangle { private double length,width; public Rectangle(
( JAVA ) public class Rectangle {    private double length,width;       public Rectangle()    {    this.length=1.0;    this.width=1.0;    }    public double getLength() {    retur…
( Java ) Help find the problem of the code, I couldn\'t get the reverse list rig
( Java ) Help find the problem of the code, I couldn't get the reverse list right in my test Here is the code: private BasicLinkedList<T> ReverseListAuxiliary(Node curr, Nod…
( Java ) Object Oriented Programming 1. Design and implement the class Circle th
( Java ) Object Oriented Programming 1.     Design and implement the class Circle that contains the double private data field radius and the following member methods: 2.     getRa…
( Java Assignment ) Write a program that simulates and scores a game of bowling.
( Java Assignment ) Write a program that simulates and scores a game of bowling. As background information, here is an explanation of terminology and scoring. Your game will need …
( Java Assignment ) Write a program that simulates and scores a game of bowling.
( Java Assignment ) Write a program that simulates and scores a game of bowling. As background information, here is an explanation of terminology and scoring. Your game will need …
( Java Assignment ) Write a program that simulates and scores a game of bowling.
( Java Assignment ) Write a program that simulates and scores a game of bowling. As background information, here is an explanation of terminology and scoring. Your game will need …
( Java code) Design and implement an AVL tree node class that must support “inse
( Java code) Design and implement an AVL tree node class that must support “insert”, and option- ally “remove” operations. Design and implement a Left-Leaning Red-Black tree node …
( Knight\'s Tour ) One of the more interesting puzzlers for chessbuffs is the Kn
( Knight's Tour ) One of the more interesting puzzlers for chessbuffs is the Knight's Tour problem. The question is this: Can thechess piece called the knight move around an empty…
( Loop + if +method + 1-D + 2-D) Write a Java program to meet the following requ
( Loop + if +method + 1-D + 2-D) Write a Java program to meet the following requirements: 1. Inside the main() method, define a 1-D array that can store 5 student names. Define a …
( MATLAB PROGRAMMING) https://drive.google.com/file/d/0B5SqE-vMokXEUFliYmktSHRHN
(MATLAB PROGRAMMING) https://drive.google.com/file/d/0B5SqE-vMokXEUFliYmktSHRHNWM/view (Follow This Link and Download the Excel File) Using the 'matlabtext.xls' file, import the d…
( Modify ) Modify the main ( ) function in Program to create a third complex num
(Modify) Modify the main( ) function in Program to create a third complex number, 5.3 + 8.4i. Have the program display this new complex number #include <iostream> using name…
( Need help with Case D and division) assembly language //part of calculator sou
(Need help with Case D and division) assembly language //part of calculator source code //calculator.cpp #include "stdafx.h" #include <stdio.h> #include <iostream> usi…
( Note : It is a C program ). ( Note : It is a C program ). 1- Car information 2
( Note : It is a C program ). ( Note : It is a C program ). 1- Car information 2- Bills 3- Display bills 4- Exit Please choose from the menu 1- Car information The first choice wi…
( Occurrence of max numbers ) Write a C++ program that reads integers, finds the
(Occurrence of max numbers) Write a C++ program that reads integers, finds the largest of them, and counts its occurrences. Assume that the input ends with number 0. Suppose that …
( PLEASE SHOW HOW TO IMPLEMENT THE DELETION FUNCTION ) SAMPLE OUTPUT: Instead of
( PLEASE SHOW HOW TO IMPLEMENT THE DELETION FUNCTION ) SAMPLE OUTPUT: Instead of using a linked list to resolve collisions, as in separate chaining, use a binary search tree. That…
( PLease Give me answer in JUST C++ launguage , this is very important final pro
( PLease Give me answer in JUST C++ launguage , this is very important final project question , please give me FULL answer) Write a complete program to hash a list of 200 words to…
( Phython ) Implement the Sieve of Eratosthenes and use it to find all prime num
(Phython) Implement the Sieve of Eratosthenes and use it to find all prime numbers less than or equal to one thousand. Implement a function with the following declaration: This fu…
( Plot functions using abstract methods ) Write an abstract class that draws the
(Plot functions using abstract methods) Write an abstract class that draws the diagram for a function. The class is defined as follows: public abstract class AbstractDrawFunction …
( Posting Again , I hope I will get full and correct Answer this time. PLease Gi
( Posting Again , I hope I will get full and correct Answer this time. PLease Give me answer in JUST C++ launguage , this is very important final project question , please give me…
( Posting the same question for third time. Can I please get answer in C++.( and
( Posting the same question for third time. Can I please get answer in C++.( and not in C or Java) ..... Please Try and Provide me a complete programm Answer. not just one or two …
( Programs are below)Need help answering a few question in Java and editing the
( Programs are below)Need help answering a few question in Java and editing the two programs below, in accordance to what the questions are asking, thank you very much. 1.Compile …
( Progrraming Lauguage , C++. Please Try and Provide me a complete programm Answ
( Progrraming Lauguage , C++. Please Try and Provide me a complete programm Answer. not just one or two function) * Declare a single dimensional array of 65 characters. Convert ea…
( Reference: Textbook Minicase MC3, pp. 90 ) Map the ER diagram for Snooty Fashi
(Reference: Textbook Minicase MC3, pp. 90) Map the ER diagram for Snooty Fashions Operations Database (created in Assignment 2) into a relational schema using ERDplus. You may ref…
( Relational and Logical Operators ) Relational and Logical operators are often
( Relational and Logical Operators )                     Relational and Logical operators are often included in the looping conditions of repetition code blocks.           The fol…
( SINGLE TABLE QUERIES) 1.Find all information on employees 2.Find the first and
( SINGLE TABLE QUERIES) 1.Find all information on employees 2.Find the first and last names of employees 3.Find unique titles in the employee database 4.Find the employee number, …
( Someone skilled in Fortan ) I wrote up some code in C++ and I am having a bit
( Someone skilled in Fortan ) I wrote up some code in C++ and I am having a bit of a hard time translating it into Fortan 90 as I am a beginner CS student. I have do all of the wo…
( Sum the major diagonal in a matrix ) Write a function that sums all the double
(Sum the major diagonal in a matrix) Write a function that sums all the double values in the major diagonal in an NxN of double values, in according to the following: • The size o…
( The Account class ) Design a class named Account that contains: A private int
(The Account class) Design a class named Account that contains: A private int data field named id for the account (default 0). A private double data field named balance for the ac…
( The Octagon class ) Write a class named Octagon that extends GeometricObject a
(The Octagon class) Write a class named Octagon that extends GeometricObject and implements the Comparable and Cloneable interfaces. Assume that all eight sides of the octagon are…
( The Time class ) Design a class named Time . The class contains: -The private
(The Time class) Design a class named Time. The class contains: -The private data fields hour, minute, and second that represent a time. -A no-arg constructor that creates a Time …
( The Triangle class ) Design a class named Triangle that extends GeometricObjec
(The Triangle class) Design a class named Triangle that extends GeometricObject. (the GeometricObject class is included in the zip folder). The class contains: Three double data f…
( USE ONLY ARRAYLIST TO STORE A COLLECTION, solve all problems with programs wri
( USE ONLY ARRAYLIST TO STORE A COLLECTION,solve all problems with programs written in the Java programming language) A classic application program is the shopping list: a way of …
( Use C-string to solve this problem.) Write a program (in c++) that reads in a
(Use C-string to solve this problem.) Write a program (in c++) that reads in a sentence of up to 100 characters and outputs the sentence with spacing corrected and with letters co…
( Using C++ The code is written, but isn\'t giving the correct arrays as outputs
( Using C++ The code is written, but isn't giving the correct arrays as outputs [Min, Max, Average] and I'm not sure how to fix it. The code is found after the question and data f…
( Using the Java language) PLEASE: Keep the programs AS SIMPLE as possible. No g
( Using the Java language) PLEASE: Keep the programs AS SIMPLE as possible. No going into complex methods or fancy stuff. I am a very new programmer, and need it to just work. I d…