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 50 / 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++ Define a class for complex numbers. A complex number is a number of the form
C++ Define a class for complex numbers. A complex number is a number of the form a + b*i where for our purposes, a and b are numbers of type double , and i is a number that repres…
C++ Define a class named CheckedArray . The objects of this class are like regul
C++ Define a class named CheckedArray. The objects of this class are like regular arrays but have range checking. If a is an object of the class CheckedArray and i is an illegal i…
C++ Define a member function PrintAll() for class PetData that prints output as
C++ Define a member function PrintAll() for class PetData that prints output as follows. Hint: Make use of the base class' PrintAll() function. #include <iostream> #include …
C++ Define a structure named StockItem with two string fields, supplier and prod
C++ Define a structure named  StockItem with two string fields, supplier and productName and one int field, catalogNumber. Then define a structure named  Customer with string fiel…
C++ Define an Investor class that has the following member variables and functio
C++ Define an Investor class that has the following member variables and functions: Two (2) private member variables: A double array of size 10 that stores investment dollar amoun…
C++ Define an abstract base class called BasicShape . The BasicShape class shoul
C++ Define an abstract base class called BasicShape. The BasicShape class should have the following members: Protected Member Variable: area (a double used to hold the shape’s are…
C++ Define and implement the overloaded constructors that support the following
C++ Define and implement the overloaded constructors that support the following test function for a StudentEmployee class. The data members for the StudentEmployee class are: • ag…
C++ Define the class Extensions that holds a list of four digit phone extensions
C++ Define the class Extensions that holds a list of four digit phone extensions. The class should have a private data member extn that is an integer pointer, and a second data me…
C++ Deque. Do not copy from other sites, I will check. Full points only for 100%
C++ Deque. Do not copy from other sites, I will check. Full points only for 100% completion. Assignment https://www.sendspace.com/file/t7svuh Assignment Files https://www.sendspac…
C++ Derived Classes Given the Person class: #include #include
C++ Derived Classes Given the Person class: #include <iostream> #include <string> using namespace std; class Person{ private:    string name;    double age;   public: …
C++ Description : In this homework, you will be given THREE problems involving p
C++ Description: In this homework, you will be given THREE problems involving pointers and classes. Each problem below builds upon the previous one. Complete the functions as desc…
C++ Description Structures provide a way to combine several related variables in
C++ Description Structures provide a way to combine several related variables into a group. This group of variables can then be manipulated (i.e. transferred to functions) by usin…
C++ Design a class Message that models an e-mail message. A message has a recipi
C++ Design a class Message that models an e-mail message. A message has a recipient, a sender, and a message text. Support the following member functions: -A constructor that take…
C++ Design a class Numbers that can be used to translate whole dollar amounts in
C++ Design a class Numbers that can be used to translate whole dollar amounts in the range 0 through 9999 into an English description of the number. For example, the number 713 wo…
C++ Design a class bankAccount that defines a bank account as an ADT and impleme
C++ Design a class bankAccount that defines a bank account as an ADT and implements the basic properties of a bank account. The program will be an interactive, menu-driven program…
C++ Design a class called Date that has integer data members to store month, day
C++ Design a class called Date that has integer data members to store month, day, and year. The class should have a three-parameter default constructor that allows the date to be …
C++ Design a class called Numbers that can be used to translate integers in the
C++ Design a class called Numbers that can be used to translate integers in the range 0 to 9999 into an English description of the number. The class should have a single integer m…
C++ Design a class called StudentInfo . It should have member variables for the
C++ Design a class called StudentInfo. It should have member variables for the following information:             Student Name (text)             Student ID number (12 characters)…
C++ Design a class called StudentInfo . It should have member variables for the
C++ Design a class called StudentInfo. It should have member variables for the following information:             Student Name (text)             Student ID number (12 characters)…
C++ Design a class called dateType to implement the date in a program as a set o
C++ Design a class called dateType to implement the date in a program as a set of integers (year, month, day). The class will include the following operations: Setters and getters…
C++ Design a class named Fan to represent a fan. The class contains: - An int da
C++ Design a class named Fan to represent a fan. The class contains: - An int data field named speed that specifies the speed of the fan. A fan has three speeds indicated with a v…
C++ Design a class template SparseMat which implements a sparse matrix . Use FHv
C++ Design a class template SparseMat which implements a sparse matrix. Use FHvector and FHlist, only, as base ADTs on which to build your class. Your primary public instance meth…
C++ Design a program that prompts the user to enter a string. The program should
C++ Design a program that prompts the user to enter a string. The program should then display the number of vowels and the number of constants in the string. The program must be m…
C++ Design a struct for a doubly-linked list as follows: Taie teed prev pies Nex
C++ Design a struct for a doubly-linked list as follows: Taie teed prev pies Next Next NUL Create a linked list as indicated above. Write a function called dowmvardSearch(listrec?…
C++ Design an address book that keeps track of the names, addresses, phone numbe
C++ Design an address book that keeps track of the names, addresses, phone numbers, date of birth of family members, friends and business. Design a class called addressType that d…
C++ Design and Implement a StackADT that does the following: .h and .cpp 1) Read
C++ Design and Implement a StackADT that does the following: .h and .cpp 1) Reads input from a file (Download and use the file "directions.txt" above as the input file for the Sta…
C++ Design and create a program to calculate the total wages for an employee. An
C++ Design and create a program to calculate the total wages for an employee. An employee is paid $10 per hour for the first 40 hours. The employee is paid $15 per hour for every …
C++ Design and implement a hierarchy inheritance system of banking, which includ
C++ Design and implement a hierarchy inheritance system of banking, which includes Savings and Checking accounts of a customer. Inheritance and virtual functions must be used and …
C++ Design and implement a hierarchy inheritance system of banking, which includ
C++ Design and implement a hierarchy inheritance system of banking, which includes Savings and Checking accounts of a customer. Inheritance and virtual functions must be used and …
C++ Design and implement a hierarchy inheritance system of banking, which includ
C++ Design and implement a hierarchy inheritance system of banking, which includes Savings and Checking accounts of a customer. Inheritance and virtual functions must be used and …
C++ Design and implement a hierarchy inheritance system of banking, which includ
C++ Design and implement a hierarchy inheritance system of banking, which includes Savings and Checking accounts of a customer. Inheritance and virtual functions must be used and …
C++ Design and implement a program that assigns seats on an airplane. Assume the
C++ Design and implement a program that assigns seats on an airplane. Assume the airplane has 20 seats in economy and has 20 seats in the first class (5 rows of 4 seats each, sepa…
C++ Design and implement the class Day that implements the day of the week in a
C++ Design and implement the class Day that implements the day of the week in a program. The class Day should store the day, such as Sun for Sunday. The program should be able to …
C++ Determine the running times predicted by the detailed model of the computer
C++ Determine the running times predicted by the detailed model of the computer for the following program fragments: Int   Sum (int x, int n) {             int sum = 0;           …
C++ Develop a class called myVector which is a simple version of the container.
C++ Develop a class called myVector which is a simple version of the container. The class you created should provide some public functions for client to use like push_back, erase,…
C++ Develop an application that has at least 3 classes that models or simulates
C++ Develop an application that has at least 3 classes that models or simulates driving a car to the gas station to purchase gas and drive home again. You should have a least 3 cl…
C++ Develop an application that has at least 3 classes that models or simulates
C++ Develop an application that has at least 3 classes that models or simulates driving a car to the gas station to purchase gas and drive home again. Must have two .cpp files and…
C++ Develop an expression manager that can do a balanced symbol check: string ex
C++ Develop an expression manager that can do a balanced symbol check: string expression = "{(0+1)*(2+3)}"; string expression = "{(0+1)+[4*(2+3)]}"; string expression ="{(0+1)+[4*…
C++ Directed Graph Question Consider the above directed weighted graph and repre
C++ Directed Graph Question Consider the above directed weighted graph and represent the graph using an adjacency matrix. While creating the adjacency matrix, use the state names …
C++ Directions/Requirements: A sample run of the program should look like this:
C++ Directions/Requirements: A sample run of the program should look like this: Enter a word: dog Enter a word: Dogs Enter a word: beaver Enter a word: Cat Enter a word: Mouse Ent…
C++ Directions: input ISBN number from user and output “Valid” if the number is
C++ Directions: input ISBN number from user and output “Valid” if the number is valid or “Invalid” otherwise. Terminate the input when the user enters “done” ISBN number for a boo…
C++ Discrete Strucs read in the number of nodes and a binary relation representi
C++ Discrete Strucs read in the number of nodes and a binary relation representing a graph. you will create an adjacency matrix from the binary relation. Then print the adjacency …
C++ Do Q5 Use visual studio not Java A mail-order house sells five products whos
C++ Do Q5 Use visual studio not Java A mail-order house sells five products whose retail prices are as follows: nr0dun 1 $2.98; product 2. $4.50; product 3, $9.98; product 4, $4.4…
C++ Do Q6 Use Visual studio not Java A mail-order house sells five products whos
C++ Do Q6 Use Visual studio not Java A mail-order house sells five products whose retail prices are as follows: nr0dun 1 $2.98; product 2. $4.50; product 3, $9.98; product 4, $4.4…
C++ Do Q7 Use visual studio not Java A mail-order house sells five products whos
C++ Do Q7 Use visual studio not Java A mail-order house sells five products whose retail prices are as follows: nr0dun 1 $2.98; product 2. $4.50; product 3, $9.98; product 4, $4.4…
C++ Do not change anything in the supplied Ch16_Ex5_MainProgram.cpp except to ad
C++ Do not change anything in the supplied Ch16_Ex5_MainProgram.cpp except to add documentation and your name. Please use the file names listed below since your file will have the…
C++ Does operator< depend on any other user-defined functions? If so, which ones
C++ Does operator&lt; depend on any other user-defined functions? If so, which ones? bool vnl_decnum::operator&lt; (vnl_decnum const&amp; r) const { #ifdef DEBUG std::cerr &lt;&lt…
C++ Dot Product using dynamic allocation Write a C++ program that does the follo
C++ Dot Product using dynamic allocation Write a C++ program that does the following 1. Has the user to input an integer n 2. Dynamically allocates two n-dimensional vectors of do…
C++ Download Lab10.cpp . In this file, the definition of the class personType ha
C++ Download Lab10.cpp . In this file, the definition of the class personType has given. Think of the personType as the base class. Lab10.cpp is provided below: #include &lt;iostr…
C++ Download tictactoe.cpp. The opponent (the \'O\'s) are not very smart (i.e. r
C++ Download tictactoe.cpp. The opponent (the 'O's) are not very smart (i.e. random). For this problem you need to add functionality to load and save games. In addition to choosin…