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 3562 / 3837

c++ project (cpp) #include using namespace std; void main () { ??????
c++ project (cpp) #include <iostream> using namespace std; void main () { ???????..... } roject Name: Water Vehicle You are required to automate the following specifications…
c++ project You have collected a file of movie ratings where each movie is rated
c++ project You have collected a file of movie ratings where each movie is rated from 1 (bad) to 5 (excellent). The first line of the file is a number that identifies how many rat…
c++ question 9-12 The constructor of the base class is called before the constru
c++ question 9-12 The constructor of the base class is called before the constructor of the derived class. True False What is the term used to describe the class that inherits fro…
c++ question A third-grade teacher at Plano Elementary School wants a program th
c++ question A third-grade teacher at Plano Elementary School wants a program that allows a student to enter the amount of money a customer owes, then an amount of money the custo…
c++ question MyClass has an internal 2-D array of dynamically allocated doubles,
c++ question MyClass has an internal 2-D array of dynamically allocated doubles, pointed to by the member named data: Assume width and height are set by constructors and mutators,…
c++ question Write a program that determines which of 5 countrys (China, England
c++ question Write a program that determines which of 5 countrys (China, England, Iceland, India, and USA) had the fewest reported automobile accidents last year. It should have t…
c++ question on templates: go here: https://github.com/connectp/cplusplus and an
c++ question on templates: go here:  https://github.com/connectp/cplusplus and answer the following question 1.1 In node.h at line 60, the declaration of key_ and value_ are missi…
c++ question!! give the procedural C++ code for the hash table function bool ins
c++ question!! give the procedural C++ code for the hash table function bool insert(HashTable *h, ELEMTYPE value) for a hash table that uses double hashing. This function should r…
c++ question: //definition of class Rectangle class Rectangle { public: double a
c++ question: //definition of class Rectangle class Rectangle              {         public:       double area();                                           double perimeter();    …
c++ question: Define a class called Month that is an abstract data type for a mo
c++ question: Define a class called Month that is an abstract data type for a month. Your class should have a private intager variable that represents the month (1 for January, 2 …
c++ question: What is the reason why this class doesn’t allow instantiation of a
c++ question: What is the reason why this class doesn’t allow instantiation of an object? __________ (2 points) // Galaxy.cpp class  Galaxy            // class definition {       …
c++ question: Write a class called Point that contains two doubles that represen
c++ question: Write a class called Point that contains two doubles that represent its x- and y-coordinates. It should have get methods for both data members. It should have a cons…
c++ questions 1)what is the output? int xyz [ ] = {2,4,6,8}; for (int a = 0; a {
c++ questions 1)what is the output? int xyz [ ] = {2,4,6,8}; for (int a = 0; a { *( xyz +a) = xyz [a] +3; } cout<<xyz[2]; 2)When an array is passed to a function, is the ent…
c++ selection sort (random) Functions or classes are ok. Create an array that ho
c++ selection sort (random) Functions or classes are ok. Create an array that holds 1000 random floats between 1-1000. Implement Selection sort to sort the values in ascending ord…
c++ simple help Dequeue one employee at a time from original queue. If her/his s
c++ simple help Dequeue one employee at a time from original queue. If her/his salary is less than 50000, enqueue that emplyee in the demandsalaryincrease queue. Otherwise move to…
c++ storing parsed data into class. I have to parse through a data read in from
c++ storing parsed data into class. I have to parse through a data read in from a file, and have the parsed data be stored in a class. There are 3 variables total, and I have pars…
c++ test question. Question 22 Write a value returning function definition (both
c++ test question. Question 22 Write a value returning function definition (both the heading and body) named sumplusten. Send the function three integers from main and return the …
c++ ty ty Create a struct named Entry that stores an entry of an address book. I
c++ ty ty Create a struct named Entry that stores an entry of an address book. It should have fields for first name, last name and email address. Provide the appropriate getter an…
c++ using eclipse Define the class bankAccount to implement the basic properties
c++ using eclipse Define the class bankAccount to implement the basic properties of a bank account. An object of this class should store the following data: Account holder's name …
c++ using polymorphyism , create an inheritance hierarchy for the following type
c++ using polymorphyism , create an inheritance hierarchy for the following types of insurance : Home, vehicle , life 2 member functions should be included: - calcpremium    - Hom…
c++ using the file name \"integers.dat\" CHA PTER 6/ VO Streams as an Introducti
c++ using the file name "integers.dat" CHA PTER 6/ VO Streams as an Introduction to Objects and Classes Note that you should use isupper (next) and not use This is because islower…
c++ with comments please would be great.. 10. Number Array Class Design a class
c++ with comments please would be great.. 10. Number Array Class Design a class that has an array of floating-point numbers. The constructor should accept an integer argument and …
c++(cpp) Your club is in a process of creating a weekly lottery. Once a week, fi
c++(cpp) Your club is in a process of creating a weekly lottery. Once a week, five distinct random integers between 1 to 40 (inclusive) are drawn. If a player guesses all of the n…
c++, 5) Show the code for an addition method for a Complex class. (You of course
c++, 5) Show the code for an addition method for a Complex class. (You of course recall that a complex number has both a real and an imaginary part.) (Reminder: Adding two values …
c++, DEVCPP NOTE: Please provide the comment for each section//, I am a beginner
c++, DEVCPP NOTE: Please provide the comment for each section//, I am a beginner, I need to understand, how the program is working. Thanks. 1) Write code for a 3rd Grade math teac…
c++, bad at english, need fully comments, ty Cell::Cell() { state = 0; face = \'
c++, bad at english, need fully comments, ty    Cell::Cell() {        state = 0;        face = '-';    }    Cell::Cell(bool intialstate) {        face = intialstate;    }    Cell:…
c++, can you help me with this problem I can seem to figure out a way to excute
c++, can you help me with this problem I can seem to figure out a way to excute it? Write a program that stores the string: "Victory won't come to me unless I go to it" into an ar…
c++, how would I be able to update objects so that they will move in the applica
c++, how would I be able to update objects so that they will move in the application. full code for reference: https://github.com/partyhat1/balls/tree/master/BouncyShapes void Sce…
c++, program works as intended (50 random numbers, displays only multiple of 3)
c++, program works as intended (50 random numbers, displays only multiple of 3) although I am looking to remove duplicate random numbers if there are any. Thanks. //Source File fo…
c++, the one everyone is copy pasting does not do what the assignment asks. I ne
c++, the one everyone is copy pasting does not do what the assignment asks. I need different types of sorting and also to intialize the array. Create a class called Invoice with t…
c++. YOU CAN ONLY INCLUDE STRING,ALGORITHM,FSTREAM Required function: void unzip
c++. YOU CAN ONLY INCLUDE STRING,ALGORITHM,FSTREAM Required function: void unzip_file(const std::string& filename) You get to work on your program to obfuscate a file and writ…
c++// Write a full class definition for a class named Averager, and containing t
c++// Write a full class definition for a class  named  Averager, and containing the following members: An data member named  sum  of type  integer . An data member named  count o…
c++: Do a program that will simulate a drive-in for a new fast-food place, Taco
c++: Do a program that will simulate a drive-in for a new fast-food place, Taco Fry, where you get good greasy food, Mexican style. Translate the pseudocode found in chapter 13. Y…
c++: The success of a hash-table implementation of the ADT table is related to t
c++: The success of a hash-table implementation of the ADT table is related to the choice of a good hash function. A good hash function is one that is easy to compute and will eve…
c++: The success of a hash-table implementation of the ADT table is related to t
c++: The success of a hash-table implementation of the ADT table is related to the choice of a good hash function. A good hash function is one that is easy to compute and will eve…
c++: Write a recursive function to_number that forms the integer sum of all digi
c++: Write a recursive function to_number that forms the integer sum of all digit characters in a string. For example, the result of to_number("3ac4") would be 7.Hint: If next is …
c++: implement customer.h, QueueType.h, QueueType.cpp, PriorityQueue.cpp, and Pr
c++: implement customer.h, QueueType.h, QueueType.cpp, PriorityQueue.cpp, and PriorityQueue.cpp bank simulator where the program will take number of tellers, arrival time and serv…
c++; please leave comments Write a thread program to sum a random array of n int
c++; please leave comments Write a thread program to sum a random array of n integers. Your program should split the array into k segments, and each of the k threads will sum over…
c++programming 2.3 Sorting Implement a base class called Sort. All other sorting
c++programming 2.3 Sorting Implement a base class called Sort. All other sorting algorithms must be derived from this class. You should decide how you are going to store the data …
c++use array Create a code segment (only the code needed to fulfill the given re
c++use array Create a code segment (only the code needed to fulfill the given requirements) in the box below. We will place the code into our main) to see if it is correct. Declar…
c-program Consider the definition of the function main. int main() {int x, y; ch
c-program Consider the definition of the function main. int main() {int x, y; char z; double rate, hours: amount:} The variables x, y, z, rate, and hours referred to in items a th…
c. (10 points) Write a static method named printGrid that accepts two integer pa
c. (10 points) Write a static method named printGrid that accepts two integer parameters rows and cols. The output is a comma-separated grid of numbers where the first parameter (…
c. (6 marks) Consider an arbitrary weighted directed graph G = (V, E) with weigh
c. (6 marks) Consider an arbitrary weighted directed graph G = (V, E) with weights er : E ? R {that is, the weights are real numbers). Assume that when you run Dijkstra's shortest…
c. Design two classes named BaseballPlayer and BasketballPlayer that are child c
c. Design two classes named BaseballPlayer and BasketballPlayer that are child classes of Player. Include a new data field in each class for the player’s position. Include an addi…
c. Find the worst case runtime (big-O notation) for BogoSort, pseudocode is give
c. Find the worst case runtime (big-O notation) for BogoSort, pseudocode is given below Please Note that the answer is not O(n):   procedure BogoSort(array A)                     …
c. Given the following algorithm for searching a binary tree (or a portion of th
c. Given the following algorithm for searching a binary tree (or a portion of the algorithm) in real code , be able to fill in the blanks // Define a structure to be used as the t…
c. In mathematics, the greatest common divisor (gcd) of two non-zero integers is
c. In mathematics, the greatest common divisor (gcd) of two non-zero integers is the largest positive integer that divides each of the integers without a remainder. One way of fin…
c. Maclaurin Series Expansion The Maclaurin series expansion of the exponential
c. Maclaurin Series Expansion The Maclaurin series expansion of the exponential function is the following: ex = xn n! =1+ x + x2 2! + x3 3! +L n= 0 ?? for all x (this formula can …
c. Maclaurin Series Expansion The Maclaurin series expansion of the exponential
c. Maclaurin Series Expansion The Maclaurin series expansion of the exponential function is the following: ex = xn n! =1+ x + x2 2! + x3 3! +L n= 0 ?? for all x (this formula can …
c. Minesweeper Minesweeper [3 is a single-player puzzle video game. The objectiv
c. Minesweeper Minesweeper [3 is a single-player puzzle video game. The objective of the game is to clear a rectangular board containing hidden "mines" without detonating any of t…