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

Browse C

Alphabetical listing with fast deep pagination.
81169 items • Page 71 / 1624

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
C++ Programming Alaska cruise line offers 2 vacation packages. One for Cruise on
C++ Programming Alaska cruise line offers 2 vacation packages. One for Cruise only (cod c) and the other for cruise and land excursion. (Code I). The data for the ship is capture …
C++ Programming Array A car dealer has 10 salespersons. Each salesperson keeps t
C++ Programming Array A car dealer has 10 salespersons. Each salesperson keeps track of the number of cars sold each month and reports it to the management at the end of the month…
C++ Programming Array Meets Pointers (20 Points) The goal of this problem is to
C++ Programming Array Meets Pointers (20 Points) The goal of this problem is to perform operations on an array, without using the "subscript operator", but only with pointers. 3. …
C++ Programming Assignment: Define a class named Vehicle that has Private member
C++ Programming Assignment: Define a class named Vehicle that has Private members: • double price • int mpg Public getter and setter functions and a print function to display pric…
C++ Programming Assignment: Implement a tic-tac-toe program in which the user pl
C++ Programming Assignment: Implement a tic-tac-toe program in which the user plays against an AI player. In this version, the board is a 5 by 5 grid and the players must get four…
C++ Programming Assignment; Run the program and enter salaries that less than $
C++ Programming Assignment; Run the program and enter salaries that less than $ 80.000.00. and also salaries that are greater than $80,000.00. Program specifications Building on p…
C++ Programming Below are answers I got wrong on a quiz. But, sometimes answers
C++ Programming Below are answers I got wrong on a quiz. But, sometimes answers that were marked wrong, were actually correct. I need someone to verify the correct answers below. …
C++ Programming Below are answers I got wrong on a quiz. But, sometimes answers
C++ Programming Below are answers I got wrong on a quiz. But, sometimes answers that were marked wrong, were actually correct. I need someone to verify the correct answers below. …
C++ Programming Below are answers I got wrong on a quiz. But, sometimes answers
C++ Programming Below are answers I got wrong on a quiz. But, sometimes answers that were marked wrong, were actually correct. I need someone to verify the correct answers below. …
C++ Programming Build a Guessing Game Program: >- Write a program to implement t
C++ Programming Build a Guessing Game Program: >- Write a program to implement the Number Guessing Game. The main method should loop as long as the player wants to play the gam…
C++ Programming C++ Programming C++ Programming C++ Programming Homework 3 Page
C++ Programming C++ Programming C++ Programming C++ Programming Homework 3 Page 2 Homework 3-Library Application Extend your main program of part 1 with these capabilities: Due We…
C++ Programming C++ programming C++ Programming Pointer Arithmetic Write a funct
C++ Programming C++ programming C++ Programming Pointer Arithmetic Write a function that passes an array address to a function as a pointer. Using pointer arithmetic, the function…
C++ Programming CPP implementation Challenging C++ Algorithm Excercise : Impleme
C++ Programming CPP implementation Challenging C++ Algorithm Excercise : Implement CPP file Using Fuctions in Header File Header File #ifndef LOGICCALCULATOR_H #define LOGICCALCUL…
C++ Programming Card Shuffling and Dealing Create a program to shuffle and deal
C++ Programming Card Shuffling and Dealing Create a program to shuffle and deal a deck of cards. The program should consist of class Card, class DeckOfCards and a driver program. …
C++ Programming Challenge #9.9: Median Function In statistics, when a set of val
C++ Programming Challenge #9.9: Median Function In statistics, when a set of values is sorted in ascending or descending order, its median is the middle value. If the set contains…
C++ Programming Challenge: Lowest Score Drop at the end of the Chapter. You must
C++ Programming Challenge: Lowest Score Drop at the end of the Chapter. You must use the stated functions and complete the Input Validation. Do NOT use global variables or arrays …
C++ Programming Complete the incomplete code for the following findSeats functio
C++ Programming Complete the incomplete code for the following findSeats function that returns an integer result. Its purpose is to check whether its first argument, a 2-dimension…
C++ Programming Consider the following scheme for encrypting a text file. The or
C++ Programming    Consider the following scheme for encrypting a text file. The original file is split into two new files. One of the two new files will contain all the character…
C++ Programming Consider the following scheme for encrypting a text file. The or
C++ Programming    Consider the following scheme for encrypting a text file. The original file is split into two new files. One of the two new files will contain all the character…
C++ Programming Customer Accounts Write a program that uses a structure to store
C++ Programming Customer Accounts Write a program that uses a structure to store the following data about a customer account:      Customer name      Customer address      City   …
C++ Programming Description The challenge for this second assignment is to devel
C++ Programming Description The challenge for this second assignment is to develop a program, called palindrome.cpp, capable of detecting palindromes. A palindrome is a word, phra…
C++ Programming Design a Sub Class: Build a \"Student\" Class. Make this class i
C++ Programming Design a Sub Class: Build a "Student" Class. Make this class inherit from the Person class. Your class should have all of the following properties: stuld, firstNam…
C++ Programming Develop a program to perform a binary search on a one-dimensiona
C++ Programming Develop a program to perform a binary search on a one-dimensional integer array LIST of dimension N. You should develop an independent search function (call it Bin…
C++ Programming Excercise On Any Linux OS. Need not be Ubuntu In the segment of
C++ Programming Excercise On Any Linux OS. Need not be Ubuntu In the segment of this task, you are required to write a C++ program that captures and lists all the contents of the …
C++ Programming Exercise 2 Mighty Casey plays centerfield for the Toledo Mudhens
C++ Programming Exercise 2 Mighty Casey plays centerfield for the Toledo Mudhens and has the following lifetime hitting percentages Out Walk Single Double Triple Home Run 5% 35% 1…
C++ Programming Exercise 2 Mighty Casey plays centerfield for the Toledo Mudhens
C++ Programming Exercise 2 Mighty Casey plays centerfield for the Toledo Mudhens and has the following lifetime hitting percentages Out Walk Single Double Triple Home Run 5% 35% 1…
C++ Programming Exercise 2 Mighty Casey plays centerfield for the Toledo Mudhens
C++ Programming Exercise 2 Mighty Casey plays centerfield for the Toledo Mudhens and has the following lifetime hitting percentages Out Walk Single Double Triple Home Run 5% 35% 1…
C++ Programming Exercise Write a program which asks the user to specify the name
C++ Programming Exercise Write a program which asks the user to specify the name of an input/output file (using an fstream object) and an output-only file (using an ofstream objec…
C++ Programming Exercise: 1) A procedure with input n performs one major operati
C++ Programming Exercise: 1) A procedure with input n performs one major operation then, if n > 0, calls itself recursively twice with input n - 1. Write the formula for the nu…
C++ Programming Exercise: 1. A NumList class contains member variables int lengt
C++ Programming Exercise: 1. A NumList class contains member variables int length and int *nums. When an object is constructed, length will be set to a positive value and nums wil…
C++ Programming Exercise: A NumList class is implemented using a singly linked l
C++ Programming Exercise: A NumList class is implemented using a singly linked list. The member variables are int length and Node* headPtr. Node is a struct with members int value…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a command-line calculator that allows the us
C++ Programming Exercise: Implement a command-line calculator that allows the user to enter an expression containing numbers, variables, brackets, and operators. The calculator wi…
C++ Programming Exercise: Implement a complete OrderedList class to store a list
C++ Programming Exercise: Implement a complete OrderedList class to store a list of integers in ascending order. Implement it in two different ways: 1) using a statically allocate…
C++ Programming Exercise: Implement a function Node * buildTree(int nums[], int
C++ Programming Exercise: Implement a function Node * buildTree(int nums[], int length); that returns a pointer to the root of a balanced binary search tree containing the same va…