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

Browse W

Alphabetical listing with fast deep pagination.
66619 items • Page 926 / 1333

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Write a C++ program to find the maximum and minimum of a data set. 1. Write a fu
Write a C++ program to find the maximum and minimum of a data set. 1. Write a function to find the maximum of a data set and position of the maximum; write another function to fin…
Write a C++ program to find the number of comparisons using binarySearch and the
Write a C++ program to find the number of comparisons using binarySearch and the sequential search algorithm as follows: Suppose list is an array of 1000 elements. a. Use a random…
Write a C++ program to find the number of comparisons using binarySearch and the
Write a C++ program to find the number of comparisons using binarySearch and the sequential search algorithm as follows: Suppose list is an array of 1000 elements. a. Use a random…
Write a C++ program to find the number of comparisons using binarySearch and the
Write a C++ program to find the number of comparisons using binarySearch and the sequential search algorithm as follows: Suppose list is an array of 1000 elements. a. Use a random…
Write a C++ program to find the number of comparisons using the binary Search an
Write a C++ program to find the number of comparisons using the binary Search and the sequential search algorithms as follows: Suppose list is an array of 1000 elements. . Use a r…
Write a C++ program to find the number of comparisons using the binary Search an
Write a C++ program to find the number of comparisons using the binary Search and the sequential search algorithms as follows: Suppose list is an array of 1000 elements. a. Use a …
Write a C++ program to find the root(s) of a quadratic equation or a linear equa
Write a C++ program to find the root(s) of a quadratic equation or a linear equation.  Use the form:   ax2 + bx + c = 0.  a = 0 will indicate a linear equation with one root.  a, …
Write a C++ program to find the squareroots of a quadratic equation of the form
Write a C++ program to find the squareroots of a quadratic equation of the form Ax^2 + Bx + C = 0. Prompt the user to enter the coefficients A, B, and C. The program can only hand…
Write a C++ program to get grades for an exam and calculate the average of the e
Write a C++ program to get grades for an exam and calculate the average of the exam. (About Classes with Pointer Member variables and writing destructor and copy constructor for s…
Write a C++ program to get input of a data set of 14 double values (grades) from
Write a C++ program to get input of a data set of 14 double values (grades) from the standard input device (the keyboard), then calculate and report the sum and the mean of the da…
Write a C++ program to get input of a data set of 14 double values (grades) from
Write a C++ program to get input of a data set of 14 double values (grades) from the standard input device (the keyboard), then calculate and report the sum and the mean of the da…
Write a C++ program to get input of a data set of 14 double values (grades) from
Write a C++ program to get input of a data set of 14 double values (grades) from the standard input device (the keyboard), then calculate and report the sum and the mean of the da…
Write a C++ program to give a user the choice to select between 3 mathematical s
Write a C++ program to give a user the choice to select between 3 mathematical series: a) Geometric (1/1 + 1/2 + 1/4 + 1/8......) b) Harmonic (1/1 + 1/2 + 1/3 + 1/4......) c) Alte…
Write a C++ program to handle the single function of inputting data. Create a st
Write a C++ program to handle the single function of inputting data. Create a structure in C++ to support the following items of information: - Passenger Name - Ticket Number - Fr…
Write a C++ program to help the Administration of a football league to manipulat
Write a C++ program to help the Administration of a football league to manipulate the list of players registered in different teams. There are 26 teams participating in the league…
Write a C++ program to implement Selection Sort Algorithm. Test your code with b
Write a C++ program to implement Selection Sort Algorithm. Test your code with both integer and character data. Your main program will be similar to the lab you have done last wee…
Write a C++ program to implement a Snake and Ladder game with the snakes and lad
Write a C++ program to implement a Snake and Ladder game with the snakes and ladders as shown in the picture above. 1. The user has one dice to play the game. 2. Implement user-de…
Write a C++ program to implement a binary search tree and operate on the binary
Write a C++ program to implement a binary search tree and operate on the binary search tree, which to hold integers with no duplicate starting root = null. All of base code is giv…
Write a C++ program to implement a binary search tree and operate on the binary
Write a C++ program to implement a binary search tree and operate on the binary search tree, which to hold integers with no duplicate starting root = null. All of base code is giv…
Write a C++ program to implement a circular queue (perform rotation on an array)
Write a C++ program to implement a circular queue (perform rotation on an array). 10 customers are sharing a resource and they are allocated 10 minutes each time it is their turn …
Write a C++ program to implement a form of a Roman numeral calculator. We are us
Write a C++ program to implement a form of a Roman numeral calculator. We are using the purely additive form of Roman numerals. By that, we mean that a number is simply the sum of…
Write a C++ program to implement a form of a Roman numeral calculator. We are us
Write a C++ program to implement a form of a Roman numeral calculator. We are using the purely additive form of Roman numerals. By that, we mean that a number is simply the sum of…
Write a C++ program to implement a form of a Roman numeral calculator. We are us
Write a C++ program to implement a form of a Roman numeral calculator. We are using the purely additive form of Roman numerals. By that, we mean that a number is simply the sum of…
Write a C++ program to implement a form of a Roman numeral calculator. We are us
Write a C++ program to implement a form of a Roman numeral calculator. We are using the purely additive form of Roman numerals. By that, we mean that a number is simply the sum of…
Write a C++ program to implement a form of a Roman numeral calculator. We are us
Write a C++ program to implement a form of a Roman numeral calculator. We are using the purely additive form of Roman numerals. By that, we mean that a number is simply the sum of…
Write a C++ program to implement a form of a Roman numeral calculator. We are us
Write a C++ program to implement a form of a Roman numeral calculator. We are using the purely additive form of Roman numerals. By that, we mean that a number is simply the sum of…
Write a C++ program to implement a form of a Roman numeral calculator. We are us
Write a C++ program to implement a form of a Roman numeral calculator. We are using the purely additive form of Roman numerals. By that, we mean that a number is simply the sum of…
Write a C++ program to implement a menu-driven program for managing a software s
Write a C++ program to implement a menu-driven program for managing a software store using binary search trees. When the program starts, all information about the software package…
Write a C++ program to implement a queue using linked lists. The program should
Write a C++ program to implement a queue using linked lists. The program should provide the following functionality: Enqueue data into queue Dequeue data from queue Print data at …
Write a C++ program to implement the Binary Search algorithm for searching a tar
Write a C++ program to implement the Binary Search algorithm for searching a target element in a sorted vector. Your program should keep track of the number of comparisons used to…
Write a C++ program to implement the Number Guessing Game . In this game, the co
Write a C++ program to implement the Number Guessing Game. In this game, the computer chooses a random number between 1 and 100. The player tries to guess the number with 7 attemp…
Write a C++ program to implement the Number Guessing Game. In this game, the com
Write a C++ program to implement the Number Guessing Game. In this game, the computer chooses a random number between 1 and 100. The player tries to guess the number in 7 or less …
Write a C++ program to implement the Number Guessing Game. In this game, the use
Write a C++ program to implement the Number Guessing Game. In this game, the user chooses a number between 1 and 100, and the player tries to guess the number in as few attempts a…
Write a C++ program to implement the algorithm of static partitioning . We assum
Write a C++ program to implement the algorithm of static partitioning . We assume the memory is always divided into 5 partitions with sizes entered by the user. The following show…
Write a C++ program to implement the algorithm of static partitioning . We assum
Write a C++ program to implement the algorithm of static partitioning . We assume the memory is always divided into 5 partitions with sizes entered by the user. The following show…
Write a C++ program to input the dimensions of a cylinder and calculate and prin
Write a C++ program to input the dimensions of a cylinder and calculate and print the surface area and volume. Not to sure how to tackle this one. I started the header fiel and it…
Write a C++ program to keep records and perform statistical analysis for a class
Write a C++ program to keep records and perform statistical analysis for a class of students of their final exam. The class may have up to 20 students. It should ask for how many …
Write a C++ program to keep track of business contacts. Specification Create a B
Write a C++ program to keep track of business contacts. Specification Create a BusinessContact class with the following fields: firstName:String lastName:String phoneNumber:String…
Write a C++ program to load an unspecified number of multi-word strings (with po
Write a C++ program to load an unspecified number of multi-word strings (with possible embedded blanks) from a file to a linked list, create an array of strings of the exact size …
Write a C++ program to load an unspecified number of multi-word strings (with po
Write a C++ program to load an unspecified number of multi-word strings (with possible embedded blanks) from a file to a linked list, create an array of strings of the exact size …
Write a C++ program to manage AN inventory. The program must do the following: 1
Write a C++ program to manage AN inventory. The program must do the following: 1. Allow entering new items into the program from the keyboard – this identifies the items Johnny wi…
Write a C++ program to manage a credit card company with at least one ADT (Accou
Write a C++ program to manage a credit card company with at least one ADT (Account) with the following members: card number, customer name, credit limit, and balance. • The custom…
Write a C++ program to manage a library system. The main user is the librarian.
Write a C++ program to manage a library system. The main user is the librarian. Build Specifications 1. The system should load a catalog of books, journals, and magazines at the s…
Write a C++ program to manage a list of students waiting to register for a cours
Write a C++ program to manage a list of students waiting to register for a course using a linked list. Operations should include adding a new student at the end of the list, addin…
Write a C++ program to manage a parking lot. Build Specifications 1. The parking
Write a C++ program to manage a parking lot. Build Specifications 1. The parking lot has multiple levels. Each level has multiple rows of spots. 2. The parking lot can park motorc…
Write a C++ program to manage a parking lot. Build Specifications: 1. The parkin
Write a C++ program to manage a parking lot. Build Specifications: 1. The parking lot has multiple levels. Each level has multiple rows of spots. 2. The parking lot can park motor…
Write a C++ program to obtain the Mid_term and Final exam scores for 10 students
Write a C++ program to obtain the Mid_term and Final exam scores for 10 students (Student 1 to Student 10) from the user and then compute and print the following: 1 Total score, w…
Write a C++ program to open and read a text file and count each unique token (wo
Write a C++ program to open and read a text file and count each unique token (word) by creating a new data type, struct, and by managing a vector of struct objects, passing the ve…
Write a C++ program to output the results for the following library functions. B
Write a C++ program to output the results for the following library functions. Be sure to use proper formatting and appropriate comments in your code. (1) The length of the follow…
Write a C++ program to perform grocery check-out procedure for a simple store wi
Write a C++ program to perform grocery check-out procedure for a simple store with max 10 products. Design & use at least one C++ class in your program. When the program start…