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

Browse U

Alphabetical listing with fast deep pagination.
19149 items • Page 228 / 383

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
Using C++ Assignment Plan and code a modular program utilizing arrays. A file co
Using C++ Assignment Plan and code a modular program utilizing arrays. A file contains an even number of integers, 2 integers per record. ·       Input the first number of each re…
Using C++ BMI or Body Mass Index weight and height measurement. The BMI is calcu
Using C++ BMI or Body Mass Index weight and height measurement. The BMI is calculated by dividing the person's body mass/weight (in kilograms) by the square of the body height (in…
Using C++ Coding Please help me with the following questions. Provide a linked i
Using C++ Coding Please help me with the following questions. Provide a linked implementation of a deque and name it LinkedDeque (use singly linked list). It can be a template/gen…
Using C++ Comments are very helpful If header files are added please provide the
Using C++ Comments are very helpful If header files are added please provide them The Caesar cipher is one of the earliest known and simplest ciphers. It is a type of substitution…
Using C++ Consider we have our own “Programming League” of four teams, where eac
Using C++ Consider we have our own “Programming League” of four teams, where each Team 3ompetes among each other. At the end of the league, each team will have had a “Programming …
Using C++ Create a Blackjack program with the following features: Single player
Using C++ Create a Blackjack program with the following features: Single player game against the dealer. Numbered cards count as the number they represent (example: 2 of any suit …
Using C++ Create a class (BinaryTree) template that will create a binary tree th
Using C++ Create a class (BinaryTree) template that will create a binary tree that can hold values of any data type. The class should provide functions to insert a node, a functio…
Using C++ Create a class called Complex for performing arithmetic with complex n
Using C++ Create a class called Complex for performing arithmetic with complex numbers. Complex numbers have the form: realPart + imaginaryPart * i, where i is -1. Use double vari…
Using C++ Create a game call Guess That Number! The program has an unlimited num
Using C++ Create a game call Guess That Number! The program has an unlimited number of rounds. In each round the program selects a random number that the user has to guess. In Rou…
Using C++ Create a sorting algorithm based on Heap. Your sorting algorithm has t
Using C++ Create a sorting algorithm based on Heap. Your sorting algorithm has to be contained in a function: void HeapSort(vector &v){ } The function takes v as a parameter a…
Using C++ Create the inheritance hierarchy illustrated below. The GeometricSolid
Using C++ Create the inheritance hierarchy illustrated below. The GeometricSolid, Circular, and Rectangular classes should be abstract. Create three pure virtual functions in the …
Using C++ Create the minimal wxWidgets application called wxEditor Add a wxTextC
Using C++ Create the minimal wxWidgets application called wxEditor Add a wxTextCtrl pointer named textControl to wxEditorMain.h wxTextCtrl* textControl; An identifier number needs…
Using C++ Declare a one-dimensional array named Totals that contains 5 elements.
Using C++ Declare a one-dimensional array named Totals that contains 5 elements. Draw how a one-dimensional array named Names with 6 elements would look like in memory. Label each…
Using C++ Declare an integer pointer. Then declare an array of 10 integers and a
Using C++ Declare an integer pointer. Then declare an array of 10 integers and ask the user for the value of the elements of the array. Point your integer pointer to the first ele…
Using C++ Define a structure called Employee with four member variables- first n
Using C++ Define a structure called Employee with four member variables- first name, last name, ID and salary. Use appropriate data types. You are provided a data file named HW10P…
Using C++ Develop an algorithm that would solve the problem. Your algorithm has
Using C++ Develop an algorithm that would solve the problem. Your algorithm has to use at least one if-statement. Use pseudocode to describe your algorithm.You are not writing cod…
Using C++ Do not make use of any variables in your answers to this question. Onl
Using C++ Do not make use of any variables in your answers to this question. Only consider positive numbers. Part A. Write a function parta(int x) which prints a sequence of numbe…
Using C++ Do not make use of any variables in your answers to this question. Use
Using C++ Do not make use of any variables in your answers to this question. Use recursive functions to cause repetition when needed. All numbers will be ints. No Loops Part A. Wr…
Using C++ Do the following and follow the requirements. You are to have 3 files;
Using C++ Do the following and follow the requirements. You are to have 3 files; 1) the class declaration in a single file 2) the main function which contains the input and menu f…
Using C++ Download the file.Comment the file completely. You should submit your
Using C++ Download the file.Comment the file completely. You should submit your updated source file through the lab drop box in Blackboard. I need help with re-naming the variable…
Using C++ Each fortune cookie will have an array of 10 strings that will hold di
Using C++ Each fortune cookie will have an array of 10 strings that will hold different fortunes. You can make up the 10 fortunes. One of those fortunes will be the active one. Th…
Using C++ Enter x: 0.5 B. (20 points) Approximating the Value of the Fresnel Int
Using C++ Enter x: 0.5 B. (20 points) Approximating the Value of the Fresnel Integral, Cf) Enter of Estimates (trapezoids): 5 C (x) 0.48096988 0.4B928112 0.49096596 0.49156568 0.4…
Using C++ Finish the program so that it finds and prints the smallest value in t
Using C++ Finish the program so that it finds and prints the smallest value in the linked list. #include <iostream> #include <cstdlib> using namespace std; class IntNo…
Using C++ Given an arbitrary ransom note, consisting of 15 20 words and several
Using C++ Given an arbitrary ransom note, consisting of 15 20 words and several magazines, write a function that will return a true, if the ransom note can be constructed from the…
Using C++ Goal: Searching and sorting, pointers, const, and parameter passing. P
Using C++ Goal: Searching and sorting, pointers, const, and parameter passing. Problem Specification: A Company has recently hired you to help them generate a payroll report for a…
Using C++ Goals Build double linked lists using pointers Learn how to manipulate
Using C++ Goals Build double linked lists using pointers Learn how to manipulate linked lists In this lab, you will create a simple double linked structures consisting of Node obj…
Using C++ How do I print this unsorted list code to a file called outfile1.txt?
Using C++ How do I print this unsorted list code to a file called outfile1.txt? //---------------------------------------- //             PrintList // Non-member function to print…
Using C++ I am stuck getting the list to read one line at a time instead of as a
Using C++ I am stuck getting the list to read one line at a time instead of as a paragraph. Screenshots of what the finished product should look like are under the problem. Thanks…
Using C++ I keep getting message: \'head does not name a type\' \'teal does not
Using C++ I keep getting message: 'head does not name a type' 'teal does not name a type' Where do I place this code in my program: /*search and delete with respect to location as…
Using C++ IN NEW YORK CITY home of the winningest sports franchise ever The Scra
Using C++ IN NEW YORK CITY home of the winningest sports franchise ever The Scratchemup Parking Garage contains a single lane that holds up to six cars. Cars arrive at the south e…
Using C++ Implement the sort procedure from Assignment 18 as a void function. Pa
Using C++ Implement the sort procedure from Assignment 18 as a void function. Pass the address of the first array element to the function along with the number of elements in the …
Using C++ Implement the three member functions specified in student.h. It needs
Using C++ Implement the three member functions specified in student.h. It needs to work on both unix and windows and be able to gcc. STUDENT.H #ifndef STUDENT_H #define STUDENT_H …
Using C++ In this lab we are going to finish the Mlist class, and begin to devel
Using C++ In this lab we are going to finish the Mlist class, and begin to develop and implement the template class Mtree. The interface is here: #include using namespace std; tem…
Using C++ Just like we can allocate run-time memory in C++ by using new and dele
Using C++ Just like we can allocate run-time memory in C++ by using new and delete, we can allocate run-time memory in C Programming as well. For this, we use malloc() and/or call…
Using C++ Language Create a class called polynomial for performing polynomial ar
Using C++ Language Create a class called polynomial for performing polynomial arithmetic. The class has the following header file: class polynomial { ?friend ostream& operator…
Using C++ Language, I want to create a program using everything up to arrays...
Using C++ Language, I want to create a program using everything up to arrays... the shorter the program the better You are at my store and I am a stickler for making sure the cash…
Using C++ NOT C, Create a Battleship Game with the criteria below. This program
Using C++ NOT C, Create a Battleship Game with the criteria below. This program will include: - Function - Array - Random number generator - Loop - Branching 1. The user will dete…
Using C++ Note that not every function has to have parameters. For example, you
Using C++ Note that not every function has to have parameters. For example, you have been creating the function main since the beginning, and it is a function without parameters. …
Using C++ On my computer, I’ve got two grade files. One contains the grades from
Using C++ On my computer, I’ve got two grade files. One contains the grades from the first mid-term (mt1.txt), and the other contains the grades from the second mid-term (mt2.txt)…
Using C++ Part 2 - Cash.cpp Write a function called SortCash() that has eight (8
Using C++ Part 2 - Cash.cpp Write a function called SortCash() that has eight (8) parameters. The first parameter should be a pass by value integer that represents a total dollar …
Using C++ Part A. A particular club whose members are interested in cats wants t
Using C++ Part A. A particular club whose members are interested in cats wants to computerise all their records. For each cat they record its name and colour (both strings), and i…
Using C++ Part C: Implement the modified Caesar cipher Objective : The goal of p
Using C++ Part C: Implement the modified Caesar cipher Objective: The goal of part C is to create a program to encode files and strings using the caesar cipher encoding method. In…
Using C++ Please explain what the for loop in this program is doing for each ite
Using C++ Please explain what the for loop in this program is doing for each iteration. The prompt for the program is as follows: Read a line of text and be able to output it back…
Using C++ Please proj06_functions.h Below Thanks The Problem A cellular automato
Using C++ Please proj06_functions.h Below Thanks The Problem A cellular automaton (see https://en.wikipedia.org/wiki/Cellular automaton) is specialized approach to computing. It c…
Using C++ Problem B: Predicting Life Expectancy (20 points) The Social Security
Using C++ Problem B: Predicting Life Expectancy (20 points) The Social Security Administration maintains an actuarial life table that contains the probability that a citizen of th…
Using C++ Prodramming Language,,Derive a class extRomanType from the class roman
Using C++ Prodramming Language,,Derive a class extRomanType from the class romanType...(class romanType convert number from decimal to roman) to do the following. In the class ext…
Using C++ Program Language Declare an array (using arrayListType.h) hold from 60
Using C++ Program Language Declare an array (using arrayListType.h) hold from 60 to 70 integers. Load the array with data from lab7.dat Sort the array using the Selection sort (wh…
Using C++ Programing Language Write a program to add two polynomials. Use a link
Using C++ Programing Language Write a program to add two polynomials. Use a linked list implementation. If the polynomials have M and N terms, respectively, please clarify the tim…
Using C++ Programing Language Write a program to add two polynomials. Use a link
Using C++ Programing Language Write a program to add two polynomials. Use a linked list implementation. If the polynomials have M and N terms, respectively, please clarify the tim…
Using C++ Programming C-code to integrate f(x) = e^(-x^2) elementof [- infinity,
Using C++ Programming C-code to integrate f(x) = e^(-x^2) elementof [- infinity, infinity] Use N of diff values, N number of steps/intervals. Print out all x_i, f_i =f(x_i) and th…