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

Browse I

Alphabetical listing with fast deep pagination.
87858 items • Page 1705 / 1758

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
in C++ 1. Download the input file, employees.dat, from my public directory. Whil
in C++ 1. Download the input file, employees.dat, from my public directory. While you are in your own cs111 directory, use the copy command (cp). [smith001@empress cs111] cp /cs/s…
in C++ 1. Write a function call displayMenu without parameters which will displa
in C++ 1. Write a function call displayMenu without parameters which will display a menu 2. write a function called getChoice that has no parameters. It will ask the user’s choice…
in C++ 3.1 Input The first line of input will be an integer N, representing the
in C++ 3.1 Input The first line of input will be an integer N, representing the number of words, followed by another integer S, representing the amount to shift the words by, foll…
in C++ A Mad Lib is a phrasal template word game in which a player is prompted f
in C++ A Mad Lib is a phrasal template word game in which a player is prompted for a list of words to substitute into blanks in a pre-written short story. The story, with the blan…
in C++ A Palindrome is defined as a word, phrase, number, or other sequence of c
in C++ A Palindrome is defined as a word, phrase, number, or other sequence of characters which reads the same backward and forward, Foir this lab, you will write 2 definitions fo…
in C++ A palindrome is a word, phrase, verse, or sentence that reads the same ba
in C++ A palindrome is a word, phrase, verse, or sentence that reads the same backward or forward. For example: A man, a plan, a canal, Panama! Ask the user for a string and check…
in C++ Binary Search Description In this assignment you are requested to impleme
in C++ Binary Search Description In this assignment you are requested to implement the binary search algorithm You can assume that the input sequence is already sorted in ascendin…
in C++ Create a project consisting of three files – driver program, implementati
in C++ Create a project consisting of three files – driver program, implementation, and specification - which will allow a month, day, and year between January 1, 1850, and Decemb…
in C++ DONT COPY AND PASTE YOU WONT GET ANY POINTS Write a program to model a si
in C++ DONT COPY AND PASTE YOU WONT GET ANY POINTS Write a program to model a simple calculator. Each data line should consist of the next operation to be performed from the list …
in C++ Define a class type \"Quadrilateral\" that represents general 2-dimension
in C++ Define a class type "Quadrilateral" that represents general 2-dimensional shapes having four sides (for examplectangle, square, trapezoid, etc). You can determine a four-si…
in C++ Description The purpose of this challenge is to employ the use of basic f
in C++ Description The purpose of this challenge is to employ the use of basic functions and arrays. This challenge will allow you to create a strong password as suggested by this…
in C++ During the tax season, every Friday, the J&J accounting firm provides ass
in 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: If a person …
in C++ FORMAT PLEASE: Create a file named BST.cpp in which you have a main funct
in C++ FORMAT PLEASE: Create a file named BST.cpp in which you have a main function which opens a file, reads the contents of the file into a BST and then performs operations on t…
in C++ Given the Student struct: struct Student{ string fName; string lName; int
in C++ Given the Student struct: struct Student{ string fName; string lName; int age; float gpa; float scores[NUM];//English, Mathematics, Biology }; 1.      Read student informat…
in C++ Given the following recursive function: string mystery(string s) return i
in C++ Given the following recursive function: string mystery(string s) return i ()r if (toupper s]) 'A' 11 toupper (s 'E Il toupper(s[ 0 ])--T Il toupper(s[ 0 ])-= .0' II toupper…
in C++ I need to open 4 text files and print the contents of each line which sho
in C++ I need to open 4 text files and print the contents of each line which should be a string into a coulumn side by side with the other outputs. string of file 1 line 4 This is…
in C++ In this assignment you will be using a BST to convert English characters
in C++ In this assignment you will be using a BST to convert English characters to Morse code strings. Morse code is a famous coding scheme that assigns a series of dots and dashe…
in C++ Instructions Consider a file containing a double dimensional array, where
in C++ Instructions Consider a file containing a double dimensional array, where each row represents a student’s grades, and each column represents all the grades received on a sp…
in C++ Jason opened a coffee shop selling coffee, cheese cakes, and coffee beans
in C++ Jason opened a coffee shop selling coffee, cheese cakes, and coffee beans. Coffee is sold at the shop in two sizes: small (9 oz, $1.5) and large (12 oz, $1.9). Cheese cakes…
in C++ Please refer to the class NumberList defined in the files called Numberli
in C++ Please refer to the class NumberList defined in the files called Numberlist.h and Numberlist.cpp. In NumberList class, add a new data member called count to trace the total…
in C++ Prompt the user to enter a string of their choosing. Output the string. E
in C++ Prompt the user to enter a string of their choosing. Output the string. Ex: Enter a sentence or phrase: The only thing we have to fear is fear itself. You entered: The only…
in C++ Sample Interaction This is a sample interaction for the program before do
in C++ Sample Interaction This is a sample interaction for the program before doing Task 3: Enter a pair of positive x, then y coordinates, separated by spaces, or '0 0' to stop: …
in C++ Start with the polynomial.cpp file provided. This is a basic outline of t
in C++ Start with the polynomial.cpp file provided. This is a basic outline of the class, which reads the in the polynomial from the keyboard. You must overload the multiplication…
in C++ This is part of a series of functions that take in input from a file of 1
in C++ This is part of a series of functions that take in input from a file of 150 random non repeating numbers. Takes 10 numbers that the user enters, 5 of those numbers are in t…
in C++ Tic-Tac-Toe, also called X\'s and O\'s, Noughts and Crosses, and X and 0
in C++ Tic-Tac-Toe, also called X's and O's, Noughts and Crosses, and X and 0 is a simple game played on a 3x3 grid, referred to as the board. Lines may be horizontal, vertical, o…
in C++ We take for granted all the place that we see arrays on a daily basis. On
in C++ We take for granted all the place that we see arrays on a daily basis. One that I know I'm sure familiar with is the one I interact with on my commute as I aimlessly scan t…
in C++ Write a class named Coin. The Coin class should have the following member
in C++ Write a class named Coin. The Coin class should have the following member variables: A string named sideUp. The sideUp member variable will holder either "heads" or "tails"…
in C++ Write a program that receives a date (e.g. 7 4 2008 for July 4, 2008) as
in C++ Write a program that receives a date (e.g. 7 4 2008 for July 4, 2008) as input and outputs the day of the week that corresponds to that date. Write the function dayOfWeek t…
in C++ Write a recursive, int -valued function named productOfOdds that accepts
in C++ Write a recursive, int -valued function named productOfOdds that accepts an integer array , and the number of elements in the array and returns the product of the odd-value…
in C++ You will need to create two vectors of strings, one for first names, and
in C++ You will need to create two vectors of strings, one for first names, and one for last names. You will then read in first and last names and place these into vectors. See ex…
in C++ and with comments please Write a function that accepts an int array and t
in C++ and with comments please Write a function that accepts an int array and the array’s size as arguments. The function should create a new array that is one element larger tha…
in C++ i need help finishing the last 2 queations ( 2 and 3 ) Here is what code
in C++ i need help finishing the last 2 queations ( 2 and 3 ) Here is what code i already have: #include<stdio.h> #include<conio.h> void main() { FILE *fp; char *sfnam…
in C++ is this how I declare the 2d dynamic vector? vector>matrix; how do i popu
in C++ is this how I declare the 2d dynamic vector? vector>matrix; how do i populate the vector ,print it , find the rows and print the major diagnols with 1s program prompts t…
in C++ language (microsoft visual C++ 2010 express) create a program that will a
in C++ language (microsoft visual C++ 2010 express) create a program that will allow the user to enter a up to fifty (50) whole numbers, store these whole numbers in an array, cou…
in C++ language please. (Airline Reservations System) A small airline has just p
in C++ language please. (Airline Reservations System) A small airline has just purchased a computer for its new au- tomated reservations system. You have been asked to develop the…
in C++ language... Can someone please review my function for deleting nodes from
in C++ language... Can someone please review my function for deleting nodes from a binary tree? Is my last part correct? Thanks **when i went to test...I am unable to remove a nod…
in C++ please 3.1 String-representation tttresult Write a function with the foll
in C++ please 3.1 String-representation tttresult Write a function with the following signature char tttresult (string tttboard); The string tttboard has nine characters represent…
in C++ why am i not geting the desired ouput write a recursice function to compu
in C++ why am i not geting the desired ouput write a recursice function to compute the following series: m(i)=1/3+2/5+3/7+4/9+4/11+6/13........+i/2i+1 this is my code below #inclu…
in C++ with this criteria How well is the program structured? For example, are t
in C++ with this criteria How well is the program structured? For example, are there divisions into smaller tasks/functions? How well is the program documented? For example, how w…
in C++ write a program that simulates one turn of the Monopoly game example. For
in C++ write a program that simulates one turn of the Monopoly game example. For this program, only the following squares exist: RegularSquare, GoSquare, IncomeTaxSquare, JailSqua…
in C++ write the progarm with the two functions The Sieve of Eratosthenes and Go
in C++ write the progarm with the two functions The Sieve of Eratosthenes and Gold Bach's Conjecture Implement the Sieve of Eratosthenes and use it to find all prime numbers less …
in C+++ Write a program that allows an unlimited number of values to be entered
in C+++ Write a program that allows an unlimited number of values to be entered and stored in an array allocated in the free store. The program should then output the values, five…
in C++, I must input 3 weather values (temperature low, temperature high, rain)
in C++, I must input 3 weather values (temperature low, temperature high, rain) and output the following: days reported, min temp, max temp, avg low, avg high, total rain and numb…
in C++, Write a program that creates a table for the user\'s choice of basic mat
in C++, Write a program that creates a table for the user's choice of basic math operations (+, -, *, /, and %). These operations will all be performed in an integer-only way. (Mo…
in C++, elements are read in from a text file. first term sets array size. Merge
in C++, elements are read in from a text file. first term sets array size. MergeSort Description Implement the mergesort algorithm for sorting an array of integers. Input structur…
in C++, please read all of instruction before starting. I put some text in bold
in C++, please read all of instruction before starting. I put some text in bold because those are important. Please help me.. Design a PayRoll class that has data members for an e…
in C++. Please correct the following program so it works as the following: The p
in C++. Please correct the following program so it works as the following: The program is reading the text file and displaying correctly, It just needs to know which line says cor…
in C++. Thanks Problem 1.2 Write one program containing all these string exercis
in C++. Thanks Problem 1.2 Write one program containing all these string exercises.         Exercise 1.2.1 Read a string from the user into a string named string1. Test it with th…
in C++. Write a structure that maps the information of an employee. This informa
in C++. Write a structure that maps the information of an employee. This information is SSN, firstName, lastName, Salary, deparment_no Where deparment_no is the department number …
in C++. please put comments. spaceing between lines (Simulation: coupon collecto
in C++. please put comments. spaceing between lines (Simulation: coupon collectors problem) Coupon collector is a classic statistic problem with many practical applications. The p…