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

// T1MP-Debug.cpp // .. This is a program with 6 errors in it -- Find and fix ea
// T1MP-Debug.cpp // .. This is a program with 6 errors in it -- Find and fix each error. // Simple Container made from circular paper // Test-MP Debug Program // #include <ios…
// TESTING: // // Test Case 1: // ------------ // DESCRIPTION: // Tests that the
// TESTING: // // Test Case 1: // ------------ // DESCRIPTION: // Tests that the assignment and course percentages are calculated correctly. // // TEST CASE INPUT DATA: // a1 = 12…
// TODO: Create getAccountNumber method to return the value of the private // ac
// TODO: Create getAccountNumber method to return the value of the private // accountNumber variable. //TODO: Create a setAccountNumber method that does not return a value and // …
// TODO: Modify to operate over arrays of SortableObjects public interface Sorta
// TODO: Modify to operate over arrays of SortableObjects public interface SortableObject { public abstract double getSortValue(); } public class SelectionSorter implements Sorter…
// TODO: The score is not showing... // TODO: Ensure the score increases when th
// TODO: The score is not showing... // TODO: Ensure the score increases when the user splats a fruit. #include "splashkit.h" using namespace std; #define CHERRY 0 #define GOOSEBE…
// Task 3 Allocation and deallocation of mono-dimensional and bi-dimensional arr
// Task 3 Allocation and deallocation of mono-dimensional and bi-dimensional arrays represented by pointers a. Declare and implement a function CreateArray(...) that returns a poi…
// Test Scores Debug // Debug Program -- there are 6 errors in this program // C
// Test Scores Debug // Debug Program -- there are 6 errors in this program // Correct this program #include <iostream> #include <iomanip> using namespace std; void re…
// The Date class contains a month, day, and year, // and methods to set and dis
// The Date class contains a month, day, and year, // and methods to set and display the values. // The month cannot be set to less than 1 or more than 12, // and the day of the m…
// The Date class contains a month, day, and year, // and methods to set and dis
// The Date class contains a month, day, and year, // and methods to set and display the values. // The month cannot be set to less than 1 or more than 12, // and the day of the m…
// The Date class contains a month, day, and year, and methods to set // and dis
// The Date class contains a month, day, and year, and methods to set // and display the values. The month cannot be set to less than 1 or more // than 12, and the day of the mont…
// The code has to be in C++, and please strictly follow the instructions. Task
// The code has to be in C++, and please strictly follow the instructions. Task You will develop a class to represent a directory or employees. We provide you with some code to st…
// The input will come from a data file and the output will go to // an output f
// The input will come from a data file and the output will go to // an output file. // PLACE YOUR NAME HERE #include <fstream> #include <iomanip> using namespace std;…
// The purpose of the application is to help a ficticious company called Jims Bu
        // The purpose of the application is to help a ficticious company called Jims Burgers to manage         // their process of selling hamburgers.         // Our application …
// The question and the code is given for the question below. I just need an exp
// The question and the code is given for the question below. I just need an explanation for the line that I typed in bold in the code below. Thanks. Here are three definitions: a…
// The two senior class homerooms at Littleville High School // are having a fun
// The two senior class homerooms at Littleville High School // are having a fundraising drive for the prom. Each time a student // solicits a contribution, a record is created wi…
// This exercise is to print an initialized 2D grid of positive // integer value
// This exercise is to print an initialized 2D grid of positive // integer values from a specified position. // You should prompt the user for a row and column value // in the gri…
// This is the code that I\'m working on! #include #include
// This is the code that I'm working on! #include <iostream> #include <cstdlib> #include <fstream> using namespace std; struct student_info { int num_of_stud; in…
// This is the implementation file for the method that deletes the ith item // f
// This is the implementation file for the method that deletes the ith item // from a list of a ListClass object #include "inlab6.h" #include "structs.h" #include <iostream>…
// This is the implementation file for the method that prints the items in // a
// This is the implementation file for the method that prints the items in // a list for a ListClass object. #include "inlab6.h" #include <iostream> #include <fstream>…
// This is the implementation file for the method that prints the items in // a
// This is the implementation file for the method that prints the items in // a list for a ListClass object. #include "inlab6.h" #include <iostream> #include <fstream>…
// This is written in C# using visual studio 2015, the book it is basing the fig
// This is written in C# using visual studio 2015, the book it is basing the figure 11.10 off of is Visual C# How To Program, Deitel H.M, Deitel, P.J 6th Edition //Please show all…
// This is written in C# using visual studio 2015, the book it is basing the fig
// This is written in C# using visual studio 2015, the book it is basing the figure 11.10 off of is Visual C# How To Program, Deitel H.M, Deitel, P.J 6th Edition or if you have th…
// This program accepts any number of purchase prices // and computes state sale
// This program accepts any number of purchase prices // and computes state sales tax as 6% of the value // and city sales tax as 2% of the value // Modify the program so that the…
// This program averages a set of numbers. #include using namespace s
// This program averages a set of numbers. #include <iostream> using namespace std; int main() { int numCount; double total = 0.0, average; cout << "How many numbers d…
// This program calculates an employee\'s take home pay. public class Payroll {
// This program calculates an employee's take home pay. public class Payroll {    public static void main(String args[])    {        double salary = 1250.00;        double stateTa…
// This program calculates gross pay. #include #include usin
// This program calculates gross pay. #include <iostream> #include <string> using namespace sdt; // Global constants const double PAY_RATE = 22.55;           // Hourly…
// This program calculates profits and sales prices for a furniture company. pub
// This program calculates profits and sales prices for a furniture company. public class Furniture {    public static void main(String args[])    {        String itemName = "TV S…
// This program calculates your age in the year 2050. // Input: None. // Output:
// This program calculates your age in the year 2050. // Input: None. // Output: Your current age followed by your age in 2050. public class NewAge2 { public static void main(Stri…
// This program counts how many sales are made in each of 5 categories of produc
// This program counts how many sales are made in each of 5 categories of products. // The user continuously enters a category number (1-5) and then enters a 9 to quit. // At the …
// This program demonstrates overloaded functions to calculate // the gross week
// This program demonstrates overloaded functions to calculate // the gross weekly pay of hourly paid, salarized or contracted // employees. #include <iostream> #include &lt…
// This program demonstrates the displayList member function. #include
// This program demonstrates the displayList member function. #include <iostream> #include "LL.h" #include <cstdlib> #include<tiMe.h> usIng nameSPACE stD; int MA…
// This program demonstrates the use of dynamic arrays // PLACE YOUR NAME HERE #
// This program demonstrates the use of dynamic arrays // PLACE YOUR NAME HERE #include <iostream> #include <iomanip> using namespace std; int main() { float *monthSal…
// This program demonstrates the use of dynamic variables // PLACE YOUR NAME HER
// This program demonstrates the use of dynamic variables // PLACE YOUR NAME HERE #include <iostream> using namespace std; const int MAXNAME = 10; int main() { int pos; char…
// This program demonstrates the use of pointer variables // It finds the area o
// This program demonstrates the use of pointer variables // It finds the area of a rectangle given length and width // It prints the length and width in ascending order //Complet…
// This program demonstrates the use of pointer variables // It finds the area o
// This program demonstrates the use of pointer variables // It finds the area of a rectangle given length and width // It prints the length and width in ascending order // PLACE …
// This program demonstrates the vector member functions. #include #i
// This program demonstrates the vector member functions. #include <iostream> #include <vector> using namespace std; int main() { vector<int> values; // Store va…
// This program demonstrates the vector\'s empty member function. #include
// This program demonstrates the vector's empty member function. #include <iostream> #include <vector> using namespace std; // Function prototype double avgVector(vect…
// This program introduces the use of static member variables. C++ #include
// This program introduces the use of static member variables. C++ #include <iostream> using namespace std; class SavingsAcct { private: int acctNum; // "regular" member var…
// This program is an emulator. It emulates a airline reservation system. // Non
// This program is an emulator. It emulates a airline reservation system. // None of the methods are implemented as they would in a real system. // The emulator is ONLY being used…
// This program is to calculate the different sizes of box needed // gor the tot
// This program is to calculate the different sizes of box needed // gor the total number of doglings #include <iostream> #include <string> using namespace std; int ma…
// This program prints \"You Pass\" if a student\'s average is // 60 or higher a
// This program prints "You Pass" if a student's average is // 60 or higher and prints "You Fail" otherwise // PLACE YOUR NAME HERE #include <iostream> using namespace std; …
// This program provides a little practice // programming with arrays. All of th
// This program provides a little practice // programming with arrays.  All of the function // prototypes have already been provided, so the // exercise is all about manipulating …
// This program reads floating point data from a data file and places those // v
// This program reads floating point data from a data file and places those // values into the private data member called values (a floating point array) // of the FloatList class…
// This program reads in from the keyboard a record of financial information //
// This program reads in from the keyboard a record of financial information // consisting of a person's name, income, rent, food cost, utilities and // miscellaneous expenses.  I…
// This program reads in from the keyboard a record of financial information //
// This program reads in from the keyboard a record of financial information // consisting of a person's name, income, rent, food cost, utilities and // miscellaneous expenses.  I…
// This program reads in from the keyboard a record of financial information //
// This program reads in from the keyboard a record of financial information // consisting of a person's name, income, rent, food cost, utilities and // miscellaneous expenses.  I…
// This program seems to contradict itself! // Things that appear to be equal ar
// This program seems to contradict itself! // Things that appear to be equal are not. // can you explain WHY this program // outputs true or false? public class IntegerQuiz { pub…
// This program shows how the toupper and tolower functions can be // applied in
// This program shows how the toupper and tolower functions can be // applied in a C++ program // PLACE YOUR NAME HERE #include <iostream> #include <cctype> #include &…
// This program shows how the toupper and tolower functions can be // applied in
// This program shows how the toupper and tolower functions can be // applied in a C++ program #include <iostream> #include <cctype> #include <iomanip> using nam…
// This program uses hours, pay rate, state tax and fed tax to determine gross /
// This program uses hours, pay rate, state tax and fed tax to determine gross // and net pay. #include <fstream> #include <iostream> #include <iomanip> using na…