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 107 / 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++....This is a program that is suppose to read a text document with roman nume
C++....This is a program that is suppose to read a text document with roman numerals and convert them to digits. I am trying to understand how this code works and what each line o…
C++.You will assign dynamically allocated derived class objects to base class po
C++.You will assign dynamically allocated derived class objects to base class pointers and use polymorphism to display output based on the type of the object. 1. First, start by i…
C++/ JAVA You\'ll be given a list of students, and you\'ll need to sort it using
C++/ JAVA You'll be given a list of students, and you'll need to sort it using heap sort. We want to sort the students according to graduation year (soonest first), and for studen…
C++/Discrete Structures 2 Read a matrix from a file into a two dimensional array
C++/Discrete Structures 2 Read a matrix from a file into a two dimensional array and ignore curly brackets and commas. The file is in the format of {{row}, {row}, ....} Then I wan…
C++/Inheritance. Any help with this would be awesome! Thank you! Design a class
C++/Inheritance. Any help with this would be awesome! Thank you! Design a class named Employee. This class should keep the following information in member variables: Employee name…
C++/Java Bubble Sort You\'ll be given a list of students, and you\'ll need to so
C++/Java Bubble Sort You'll be given a list of students, and you'll need to sort it using bubble sort. We want to sort the students according to graduation year (soonest first), a…
C++/Operator Overloading. Hello, if anyone would be able to help me with this pr
C++/Operator Overloading. Hello, if anyone would be able to help me with this problem it would be greatly appreciated. I am mainly having a difficult with the =, ++, --. Thank you…
C++/java program for calculating probability: ok so the problem is,we have a fes
C++/java program for calculating probability: ok so the problem is,we have a festival in which N artists are present.Each artist has his/her own masterpiece. in this festival,the …
C++11 (2 points) A copy constructor hasparameters. zero one two (d) None of the
C++11 (2 points) A copy constructor hasparameters. zero one two (d) None of the above (2 points) A class member variable/object that is to be shared among all objects of a class i…
C++11 (2 points) Given that an integer named x has been declared, which of the f
C++11 (2 points) Given that an integer named x has been declared, which of the following lines of code will NOT compile? (a) const int ref x; (b) const int ref-5; (c) const int 8r…
C++11 1. This problem requires that you write a class definition, and implement
C++11 1. This problem requires that you write a class definition, and implement two of its functions. Given the following class definition: class Base { public: Base(); Base(char …
C++11 2. This problem requires implementing four functions. Given the following
C++11 2. This problem requires implementing four functions. Given the following class definition, non-member non-friend function, and explanation: class Foo { public: Foo(); Foo(i…
C++11 Coding question Assignment Requirements .The name of your compiled binary
C++11 Coding question Assignment Requirements .The name of your compiled binary shall be exam2 .You will be submitting a minimum of 13 files . The files required include - 2 files…
C++11 Prefix Expression Evaluation Program Develop a program with functions that
C++11 Prefix Expression Evaluation Program Develop a program with functions that 1.) determine whether an expression is a valid prefix expression, and 2.) evaluate the expression …
C++11 Table class implementation using std::vector and chained hashing. any othe
C++11 Table class implementation using std::vector and chained hashing. any other solutions are wrong Write table.h to define class Table as it is used in the demonstration progra…
C++11 Write a program that takes its input from a file of numbers of type double
C++11 Write a program that takes its input from a file of numbers of type double. The program outputs to the screen the standard deviation of the numbers in the file. The file con…
C++11, please compile before posting answer to make sure there aren\'t errors. t
C++11, please compile before posting answer to make sure there aren't errors. thank you! The program should print a string of text to the terminal before getting each line of inpu…
C++: -------------------------------------------- #include #include
C++: -------------------------------------------- #include <iostream> #include <iomanip> #include <string> using namespace std; struct movie { string title; int …
C++: //stringPkg.h//A library of ASCIIZ string functions.//All functions in this
C++: //stringPkg.h//A library of ASCIIZ string functions.//All functions in this library manipulate character arrays//whose values are sequences of characters (string-values)//uti…
C++: 1) Implement the unfinished methods of DLL class. Modify the methods in DLL
C++: 1) Implement the unfinished methods of DLL class. Modify the methods in DLL.cpp, do NOT change anything in DLL.h or test.cpp. Use test.cpp to test your implementations. This …
C++: 32 True or False Questions & 8 Multiple Choice Questions Question 1: Typica
C++: 32 True or False Questions & 8 Multiple Choice Questions Question 1: Typically in C++, most classes have their methods marked public. True or False? Question 2: When read…
C++: 32 True or False Questions & 8 Multiple Choice Questions Question 1: Typica
C++: 32 True or False Questions & 8 Multiple Choice Questions Question 1: Typically in C++, most classes have their methods marked public. True or False? Question 2: When read…
C++: An employee is paid at a rate of $16.78 per hour for regular hours worked i
C++: An employee is paid at a rate of $16.78 per hour for regular hours worked in a week. Any hours over that are paid at the overtime rate of one and one-half Lmes that. From the…
C++: An oil slick occurs when an underwater refinery pipe ruptures, pumping oil
C++: An oil slick occurs when an underwater refinery pipe ruptures, pumping oil into the water. The spilled oil sits on top of the water and causes a natural disaster. For simplic…
C++: Answer the follwoing multiple choice questions. No need to explain. 1- Give
C++: Answer the follwoing multiple choice questions. No need to explain. 1- Given the following declration, what is the value of b[1][0]? int b[ 2 ][ 2 ] = { { 1 }, {3 , 4} }; a. …
C++: Assume given the following definition of function process: void process(int
C++: Assume given the following definition of function process: void process(int vnum, int & rnum1, int & rnum2) { vnum = vnum + 5; rnum1 = rnum1 + 10; rnum2 = vnum + rnum…
C++: Assume that grade is a variable whose value is a letter grade-- any one of
C++: Assume that grade is a variable whose value is a letter grade-- any one of the following letters: 'A', 'B', 'C', 'D', 'E', 'F', 'W', 'I'. Assume further that there are the fo…
C++: Banking Project Design and implement a hierarchy inheritance system of bank
C++: Banking Project Design and implement a hierarchy inheritance system of banking, which includes Savings and Checking accounts of a customer. Inheritance and virtual functions …
C++: Based on these coding guidelines, can someone check/add if necessary to my
C++: Based on these coding guidelines, can someone check/add if necessary to my code, thanks. This is the code here, at the bottom are the guidelines. Nim.h #include <iostream&…
C++: Called statistician initialized, it can be given a sequence of double numbe
C++: Called statistician initialized, it can be given a sequence of double numbers. Each number in the sequence is function called next_number delcare a statistician called s sequ…
C++: Can anyone separate this code into separate header and implentation files ?
C++: Can anyone separate this code into separate header and implentation files? #include <iostream> using namespace std; class LinearEquation { int a, b, c, d, e, f; public:…
C++: Can somebody help me make my inputdata function to return a value! much tha
C++: Can somebody help me make my inputdata function to return a value! much thanks and here is my code: #include <iostream> #include <string> using namespace std; int…
C++: Can you show the code you used to create? What if vector Didn\'t Exist? You
C++: Can you show the code you used to create? What if vector Didn't Exist? Your task is to create a container that is similar to the vector class we use in STL. We will build a c…
C++: Consider the definition of the class dateType given in Chapter 11. a) Write
C++: Consider the definition of the class dateType given in Chapter 11. a) Write the statement that includes a friend function named before in the class dateType that takes as par…
C++: Create a Dynamic 2D Array Class. This class should overload the Call Operat
C++: Create a Dynamic 2D Array Class. This class should overload the Call Operator () for the following behaviors: Return (modifiable) Lvalue element for a non-const object Return…
C++: Create a Dynamic 2D Array Class. This class should overload the Call Operat
C++: Create a Dynamic 2D Array Class. This class should overload the Call Operator () for the following behaviors: Return (modifiable) Lvalue element for a non-const object Return…
C++: Create a Dynamic 2D Array Class. This class should overload the Call Operat
C++: Create a Dynamic 2D Array Class. This class should overload the Call Operator () for the following behaviors: Return (modifiable) Lvalue element for a non-const object Return…
C++: Create a class called \"HashTable\" This class will implement hashing on an
C++: Create a class called "HashTable" This class will implement hashing on an array of integers Make the table size 11 Implement with linear probing. The hash function should be:…
C++: Create a class/struct. Members: MaxSize const = 10 Define an array that hol
C++: Create a class/struct. Members: MaxSize const = 10 Define an array that holds 10 items. Count - indicates how many items are on the stack. Methods: Push - Accepts a number an…
C++: Create a simpe address book using arrays that allows a user to search, add,
C++: Create a simpe address book using arrays that allows a user to search, add, print, or delete an entry. The user should be allowed to search by first name, last name, phone nu…
C++: Define a function int binarySearch(int nums[], int length, int target, int
C++: Define a function int binarySearch(int nums[], int length, int target, int minValue, int maxValue); That returns the index of any element of nums whose value is between minVa…
C++: Design a Basic Link List class to hold a series of integers. Implement the
C++: Design a Basic Link List class to hold a series of integers. Implement the following member functions: 1. Append 2. Prepend 3. Constructor 4. Destructor 5. RemoveFront 6. Rem…
C++: Display sorted favorite movies. Use a linked list to store your favorite mo
C++: Display sorted favorite movies. Use a linked list to store your favorite movies. Store the movie objects into a linked list, display the movie information by sorting with the…
C++: Doubly-Linked Lists The goal of the exercise is to implement a class List o
C++: Doubly-Linked Lists The goal of the exercise is to implement a class List of doubly- linked lists. My goal is to implement the class in a file doubly-linked.cpp. The class Li…
C++: During the tax season, every Friday, the J&J accounting firm provides assis
C++: During the tax season, every Friday, the J&J accounting firm provides assistance to people who prepare their own tax returns. Their charges are as follows:               …
C++: During winter when it is very cold, typically, everyone would like to know
C++: During winter when it is very cold, typically, everyone would like to know the windchill factor, especially, before going out. Meteorologist use the following formula to comp…
C++: Execute the following program and identify the variables that have been cre
C++: Execute the following program and identify the variables that have been created but not destroyed when the cout statement in the function advertissement is executed. What is …
C++: Exercise 1: Determine whether each of the following characteristics apply t
C++: Exercise 1: Determine whether each of the following characteristics apply to a stack, a queue, both, or neither. A.    An element is inserted at a special place called the to…
C++: Exercise 1: Determine whether each of the following characteristics apply t
C++: Exercise 1: Determine whether each of the following characteristics apply to a stack, a queue, both, or neither. A.    An element is inserted at a special place called the to…
C++: Files: May2017Rain.txt: ___________________________________________________
C++: Files: May2017Rain.txt: _________________________________________________________ April2017Rain.txt: Observed data is often collected and stored for batch processing. One exa…