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

Browse W

Alphabetical listing with fast deep pagination.
66619 items • Page 912 / 1333

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
Write a C++ class implementing Roman numerals. Make sure it compiles and has no
Write a C++ class implementing Roman numerals. Make sure it compiles and has no warnings. I'd really appreciate it. Thanks! The subtractive Roman numeral notation commonly in use …
Write a C++ class template (named GenLookup) to implement a generic look-up list
Write a C++ class template (named GenLookup) to implement a generic look-up list class. The elements of the lists may be instantiated to any simple data type or to string type. Th…
Write a C++ class that is derived from the Progression class to produce a progre
Write a C++ class that is derived from the Progression class to produce a progression where each value is the absolute value of the difference between the previous two values. You…
Write a C++ class that is derived from the Progression class to produce a progre
Write a C++ class that is derived from the Progression class to produce a progression where each value is the absolute value of the difference between the previous two values. You…
Write a C++ class, Produce , that represents a type of produce for sale at a gro
Write a C++ class, Produce, that represents a type of produce for sale at a grocer, such as bananas or ground beef. Produce should have three member variables: a name (e.g. "white…
Write a C++ code for below question Using division method and multiplication met
Write a C++ code for below question Using division method and multiplication method for a hash function H and a hash table of size m ,store data of student ID's (n=150) to an arra…
Write a C++ code for calculating the GCD (Greatest Common Divisor) between two p
Write a C++ code for calculating the GCD (Greatest Common Divisor) between two positive integer numbers. You  should  use Euclid's  original  subtraction  based  GCD algorithm ( n…
Write a C++ code for the Hash function, and a code that will resolve the collisi
Write a C++ code for the Hash function, and a code that will resolve the collision/clash in a Hash Table.
Write a C++ code for the following algorithm that convert from infix to postfix
Write a C++ code for the following algorithm that convert from infix to postfix Write a C++ code for the following algorithm that convert from infix to postfix While (not end of i…
Write a C++ code that you need to summarize an array. Summary of an (data) array
Write a C++ code that you need to summarize an array. Summary of an (data) array means that printing all the items and quantity of a specific items found in the array. The summary…
Write a C++ code to Provide an application that allows users to select the metho
Write a C++ code to Provide an application that allows users to select the method how to convert between miles and kilometer by using the formula or using the estimation. After fi…
Write a C++ code to implement the Bag class to store strings. The implementation
Write a C++ code to implement the Bag class to store strings. The implementation should include: a header file, an implementation file, an application file. A Bag class will inclu…
Write a C++ code to implement the classes. It will include a header file, an imp
Write a C++ code to implement the classes. It will include a header file, an implementation file, and the application file. Each line should have an explanation.                 H…
Write a C++ code to implement the classes. It will include a header file, an imp
Write a C++ code to implement the classes. It will include a header file, an implementation file, and the application file. Each line should have an explanation.                 H…
Write a C++ code to implement the sequence class to store double. The implementa
Write a C++ code to implement the sequence class to store double. The implementation will include a header file, an implementation file, an application file. The sequence class wi…
Write a C++ code where: Two production facilities create devices, each device is
Write a C++ code where: Two production facilities create devices, each device is tested at the same location. The devices arrive at random times and are dealt with in order of the…
Write a C++ computer program to perform computation of area bounded by any of th
Write a C++ computer program to perform computation of area bounded by any of the following functions within a given range of x values: Your program will request the user to input…
Write a C++ console program with CODEBLOCKS to do the following: 1. Define an ar
Write a C++ console program with CODEBLOCKS to do the following: 1. Define an array of ints with the ten elements { 0, 1,2,3, 4, 5, 6, 7, 8, 9 }. 2. Define a vector with those ten…
Write a C++ documented program to perform the role of a quiz maker. The program
Write a C++ documented program to perform the role of a quiz maker. The program should display True/False questions, record user's answers, keep the time, record the scores and mo…
Write a C++ documented program to perform the role of a quiz maker. The program
Write a C++ documented program to perform the role of a quiz maker. The program should randomly display True/False questions, record student's answers, keep track of the timing, a…
Write a C++ documented program to perform the role of a quiz maker. The program
Write a C++ documented program to perform the role of a quiz maker. The program should randomly display True/False questions, record student's answers, keep track of the timing, a…
Write a C++ documented program to perform the role of a quiz maker. The program
Write a C++ documented program to perform the role of a quiz maker. The program should randomly display True/False questions, record student's answers, keep track of the timing, a…
Write a C++ documented program to perform the role of a quiz maker. The program
Write a C++ documented program to perform the role of a quiz maker. The program should randomly display True/False questions, record student's answers, keep track of the timing, a…
Write a C++ documented program to perform the role of a quiz maker. The program
Write a C++ documented program to perform the role of a quiz maker. The program should randomly display True/False questions, record student's answers, keep track of the timing, a…
Write a C++ documented program to perform the role of a quiz maker. The program
Write a C++ documented program to perform the role of a quiz maker. The program should randomly display True/False questions, record student's answers, keep track of the timing, a…
Write a C++ function (not program) to compute forwarding of a packet in an IP ro
Write a C++ function (not program) to compute forwarding of a packet in an IP router. The function should be named route and has three input paramaters: an IP address (a 32 bit in…
Write a C++ function (not program) to compute forwarding of a packet in an IP ro
Write a C++ function (not program) to compute forwarding of a packet in an IP router. The function should be named route and has three input paramaters: 1) an IP address (a 32 bit…
Write a C++ function TreeNode* copy_tree(TreeNode* T) that returns a copy of bin
Write a C++ function TreeNode* copy_tree(TreeNode* T) that returns a copy of binary tree T Write a C++ function that returns a new binary tree that is identical to the binary tree…
Write a C++ function display prototyped by int display(char ch, int n); that dis
Write a C++ function display prototyped by int display(char ch, int n); that displays the character ch on the stdout device (screen) consecutively n times if n>0 and displays n…
Write a C++ function display prototyped by int display(char ch, int n); that dis
Write a C++ function display prototyped by int display(char ch, int n); that displays the character ch on the stdout device (screen) consecutively n times if n>0 and displays n…
Write a C++ function given two sorted linked lists a: [2 3 4 9 10 30] b: [5 8 8
Write a C++ function given two sorted linked lists a: [2 3 4 9 10 30] b: [5 8 8 11 20 40] That merges these two lists in sorted order. Do not alllocate or deallocate any memory, j…
Write a C++ function implode that receives a vector of strings and a delimiter s
Write a C++ function implode that receives a vector of strings and a delimiter string. This function returns a single string that is the elements of the vector together with the d…
Write a C++ function int rectArea (int l en, int wid) that returns the area of a
Write a C++ function int rectArea (int l en, int wid) that returns the area of a rectangle with length l en and width wid. Test it with a main program that inputs the length and w…
Write a C++ function library to manipulate and test characters. In particular, a
Write a C++ function library to manipulate and test characters. In particular, a menu-based system should be developed to perform the following operations on                 chara…
Write a C++ function library to manipulate and test characters. In particular, a
Write a C++ function library to manipulate and test characters. In particular, a menu-based system should be developed to perform the following operations on characters/strings: 1…
Write a C++ function named stringCopy that takes two C-strings s1 and s2 and cop
Write a C++ function named stringCopy that takes two C-strings s1 and s2 and copies the characters of s1 to s2. Note that when we call this function from the main program, both S1…
Write a C++ function power(x,n) that computes x n recursively in fewer than n-1
Write a C++ function power(x,n) that computesxn recursively in fewer thann-1 multiplications. Your program should read as input thevalue of x and n from standard input and it shou…
Write a C++ function that accepts four arguments int x[] An integer array int si
Write a C++ function that accepts four arguments int x[] An integer array int size: The size of the array int a int b int sum(int x[], int size, int a, int b) The function should …
Write a C++ function that has an input of a char value and returns true if the c
Write a C++ function that has an input of a char value and returns true if the character is lower case or false otherwise? Write a C++ function that has three inputs which are int…
Write a C++ function that meets the following: -The function is named averageRea
Write a C++ function that meets the following: -The function is named averageReading -It has four parameters 1) an array of integer values called readings 2) an integer that is th…
Write a C++ function that prints the reverse of an input string #include
Write a C++ function that prints the reverse of an input string #include <iostream> #include <string> using std::cout; using std::endl; using std::string; void reverse…
Write a C++ function that receives a single letter and prints out the correspond
Write a C++ function that receives a single letter and prints out the corresponding digit on the telephone. The letters and digits on a telephone are grouped this way: 2 = ABC 3 =…
Write a C++ function that returns True if two trees are structurally identical.(
Write a C++ function that returns True if two trees are structurally identical.(they are made of nodes with the same values arranged in the same way.) The function takes two argum…
Write a C++ function that returns True if two trees have the same values (they a
Write a C++ function that returns True if two trees have the same values (they are made of nodes with the same values.) It should return True ifthe trees have te same values or Fa…
Write a C++ function that returns True if two trees have the same values (they a
Write a C++ function that returns True if two trees have the same values (they are made of nodes with the same values.) It should return True if the trees have te same values or F…
Write a C++ function that returns True if two trees have the same values (they a
Write a C++ function that returns True if two trees have the same values (they are made of nodes with the same values.) It should return True if the trees have te same values or F…
Write a C++ function that returns True if two trees have the same values (they a
Write a C++ function that returns True if two trees have the same values (they are made of nodes with the same values.) It should return True if the trees have te same values or F…
Write a C++ function that starts with a single linked list of items and a specia
Write a C++ function that starts with a single linked list of items and a special value called the splitting value. Two item values can be comparred using the < operator- but t…
Write a C++ function that starts with a single linked list of items and a specia
Write a C++ function that starts with a single linked list of items and a special value called the splitting value. Two item values can be comparred using the < operator- but t…
Write a C++ function that takes a binary search tree as input and produces a lin
Write a C++ function that takes a binary search tree as input and produces a linked list of the entries, with the entries sorted (smallest entries at the front of the list and lar…