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

Browse C

Alphabetical listing with fast deep pagination.
81169 items • Page 78 / 1624

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
C++ Questions Part 2 Explain why it\'s false for all the false answers. 7) TRUE/
C++ Questions Part 2 Explain why it's false for all the false answers. 7) TRUE/ FALSE The operators have already been overloaded by the stream classes! TRUE/ FALSE Originally they…
C++ Questions Part 3 18) Show (pseudo)code for a common loop for opening an outp
C++ Questions Part 3 18) Show (pseudo)code for a common loop for opening an output file. (Do not allow fancy exiting conditions. If the user wants to exit, they can hit Control-C.…
C++ Questions Part 4(End) Thank you for all your help. 26) Could you use the max
C++ Questions Part 4(End) Thank you for all your help. 26) Could you use the maximum finding function object you designed in #22 to help with processing the scores from 25? If so,…
C++ Questions QUESTION 1 Assume the declarations: vector xValue; vector number(5
C++ Questions QUESTION 1 Assume the declarations: vector xValue; vector number(5, 1); The content of the vector after the following statement is executed: for (int j = 0; j < 5…
C++ Questions Question 1 Question text Left uncaught, a thrown exception will ca
C++ Questions Question 1 Question text Left uncaught, a thrown exception will cause your program to terminate. Select one: a. FALSE b. TRUE Question 2 Question text Only a pointer…
C++ Questions We should only place the _____ keyword in front of functions that
C++ Questions We should only place the _____ keyword in front of functions that are really simple and uncomplicated. (Otherwise the compiler will do the machine equivalent of laug…
C++ Questions What is the output of the following pseudocode code: ages = new Li
C++ Questions What is the output of the following pseudocode code: ages = new List Append(ages, 55) Append(ages, 88) Append(ages, 66) Print(ages) 55, 66, 88 55, 88, 66 55, because…
C++ Questions What would happen if the symbol used in the #ifndef/#define direct
C++ Questions What would happen if the symbol used in the #ifndef/#define directives wasn't unique? If a library consisted entirely of inline functions (and/or constants and/or ty…
C++ Questions When a programmer resizes a vector of objects, which constructor i
C++ Questions When a programmer resizes a vector of objects, which constructor is called for each new element? What attributes help choose among quick sort, merge sort, and heap s…
C++ Questions You are given a vector of class objects named vec. Objects of the
C++ Questions You are given a vector of class objects named vec. Objects of the class which is vec's base type contain a public vector member named stuey which is of base type Poi…
C++ Questions about code. I have bolded the lines I have a question on, and my q
C++ Questions about code. I have bolded the lines I have a question on, and my questions are italisized and bolded. Please explain as best as you can, maybe use other examples. #i…
C++ Questions please help!! Write a program that allows user to enter a array of
C++ Questions please help!! Write a program that allows user to enter a array of integer numbers and then reverses this array of integer numbers. This program works for arrays of …
C++ Questions! A few questions i need answered: 1. Can every for loop be impleme
C++ Questions! A few questions i need answered: 1. Can every for loop be implemented as a while loop? why or why not? 2. Can every if statement be implemented as a switch statemen…
C++ Questions! A few questions i need answered: 1. Can every for loop be impleme
C++ Questions! A few questions i need answered: 1. Can every for loop be implemented as a while loop? why or why not? 2. Can every if statement be implemented as a switch statemen…
C++ Questions!!! 1) [3 points] The most common logical operators are and , or ,
C++ Questions!!! 1) [3 points] The most common logical operators are and, or, and not, but there are other ones. Research and complete truth tables for the following operators:   …
C++ Questions, please help :( For each of the following, indicate whether you co
C++ Questions, please help :( For each of the following, indicate whether you could use inline-ing or default arguments (or both or neither). (It would be helpful if you explained…
C++ Questions, please help TRUE/FALSE By passing a string argument to a function
C++ Questions, please help TRUE/FALSE By passing a string argument to a function, we can often make that function more re-usable. TRUE/FALSE This is especially true for functions …
C++ Questions. Passing a vector to a function is by-value unless you use an & af
C++ Questions. Passing a vector to a function is by-value unless you use an & after the element type (like so: vector &). Given a vector declared as vector vec', answer ea…
C++ Questions: 1. How many bytes are required to store N data items in each of t
C++ Questions: 1.      How many bytes are required to store N data items in each of these three structures: array based list, linked list, and doubly linked list? Assume that each…
C++ Questions: 4) A graph-traversal algorithm stops when it ______. a) first enc
C++ Questions: 4) A graph-traversal algorithm stops when it ______. a) first encounters the designated destination vertex b) has visited all the vertices that it can reach c) has …
C++ Queue - Please check my code and see if im doing Queue correctly. Make any c
C++ Queue - Please check my code and see if im doing Queue correctly. Make any corrections and make sure it runs efficentely. I will rate thumbs up if you revise it! I am new too …
C++ Queue Array help Hello, I\'m implementing a Queue Array which is supposed to
C++ Queue Array help Hello, I'm implementing a Queue Array which is supposed to keep track of todo items such as: "go to the store" or "take out the trash" I'm not sure what is wr…
C++ Queue Exercise Hello Everyone and thank you in advance for your help. Please
C++ Queue Exercise Hello Everyone and thank you in advance for your help. Please my question below. **************Purpose of this Program:************** -This program is supposed …
C++ Quiz 11 Suggested point values are marked in parentheses. In all questions t
C++ Quiz 11 Suggested point values are marked in parentheses. In all questions that involve writing methods, be sure to think of whether method arguments and return values should …
C++ Read 10 integers into an array. Calculate the average. Display those array e
C++ Read 10 integers into an array. Calculate the average. Display those array elements that are greater than the average. For example: Code so far is: #include <iostream> u…
C++ Read multiple inputs from one line of a file program Lab Instructions Create
C++ Read multiple inputs from one line of a file program Lab Instructions Create one file, lab6.cpp. This program should accept two command line arguments: an input text file and …
C++ Reading File\'s Line , words, and chars from arg There are several error cas
C++ Reading File's Line , words, and chars from arg There are several error cases that must be handled: A file is not found Print “File filename is not found” and stop An argument…
C++ Reading File\'s Line , words, chars. There are several error cases that must
C++ Reading File's Line , words, chars. There are several error cases that must be handled: A file is not found Print “File filename is not found” and stop An argument is poorly f…
C++ Reading File\'s Line , words, chars. There are several error cases that must
C++ Reading File's Line , words, chars. There are several error cases that must be handled: A file is not found Print “File filename is not found” and stop An argument is poorly f…
C++ Really lost on this assigment. Please help. Objective In this assignment, st
C++ Really lost on this assigment. Please help. Objective In this assignment, students will load a topographic (elevation) data into a 2D array and write functions to compute the …
C++ Recall that the ADT list class methods are; ?void List() ?bool isEmpty() ?in
C++ Recall that the ADT list class methods are; ?void List() ?bool isEmpty() ?int size() ?void add(int item, int pos)//inserts item at specified position (first postion is 1) ?voi…
C++ Recursion C++ Recursion Recursion Write a function called arraySum(int[], in
C++ Recursion C++ Recursion Recursion Write a function called arraySum(int[], int) that accepts two arguments, an array of integers and a number indicating the number of elements …
C++ Recursion vs Iterative functions. For this assignment you will make a Recurs
C++ Recursion vs Iterative functions. For this assignment you will make a Recursion class with two recursive member functions. a) Implement the recursive binSearchRec algorithm pr…
C++ Recursion, Inductive Proof. Hi there, below are my recursive functions and I
C++ Recursion, Inductive Proof. Hi there, below are my recursive functions and I have to prove the functions work as they are supposed to by using inductive proof. Can anyone writ…
C++ Recursions and Palindromes Task 1: As you might know, a palindrome is a stri
C++ Recursions and Palindromes Task 1: As you might know, a palindrome is a string that reads the same forwards and backwards, ignoring spaces and punctuation. For example, "a man…
C++ Requested files : CrosswordGenerator.cpp, CrosswordGenerator.h, CrosswordGen
C++ Requested files: CrosswordGenerator.cpp, CrosswordGenerator.h, CrosswordGenerator_test.cpp A program that forms the basis of a crossword puzzle generator. In order to create a…
C++ Requested files: CrosswordGenerator.cpp, CrosswordGenerator.h, CrosswordGene
C++ Requested files: CrosswordGenerator.cpp, CrosswordGenerator.h, CrosswordGenerator_test.cpp For this assignment, you will write a program that forms the basis of a crossword pu…
C++ Required Classes and Methods NOT functions. Implement Inheritance, Getters,
C++ Required Classes and Methods NOT functions. Implement Inheritance, Getters, Setters, and other OOP tools as needed. Create 2 int arrays. Array1[1000] and Array2[100000] Create…
C++ Requirements: You should name your Prority Queue class as PQ. The queue must
C++ Requirements: You should name your Prority Queue class as PQ. The queue must be able to hold unlimited number of integers. It has two key operations: Push and Pop, which shoul…
C++ Reverse Array Write a function that accepts an int array and the array ’s si
C++ Reverse Array Write a function that accepts an int array and the array ’s size as arguments . The function should create a copy of the array , except that the element values s…
C++ Review Questions fill in the blank. Please answer all to the best of your ab
C++ Review Questions fill in the blank. Please answer all to the best of your ability! Thank you! 1.) A ________ variable can hold only one of two values: true or false. 2.) When …
C++ Review Questions fill in the blank. Please answer all to the best of your ab
C++ Review Questions fill in the blank. Please answer all to the best of your ability! Thank you! 1.) What will the following statement do if x equals 17 and answer = 20? answer =…
C++ Review Questions fill in the blank. Please answer all to the best of your ab
C++ Review Questions fill in the blank. Please answer all to the best of your ability! Thank you! 1.) An ________ operator can work with programmer-defined data types. 2.) When a …
C++ Review Questions fill in the blank. Please answer all to the best of your ab
C++ Review Questions fill in the blank. Please answer all to the best of your ability! Thank you! 1.) A storage location in the computer's memory that can hold a piece of data is …
C++ Review Questions fill in the blank. Please answer all to the best of your ab
C++ Review Questions fill in the blank. Please answer all to the best of your ability! Thank you! 1.) When an arithmetic expression contains two or more different operators, such …
C++ Review Questions fill in the blank. Please answer all to the best of your ab
C++ Review Questions fill in the blank. Please answer all to the best of your ability! Thank you! 1.) This allows you to access structure members. 2.) This member function can be …
C++ Review Questions fill in the blank. Please answer all to the best of your ab
C++ Review Questions fill in the blank. Please answer all to the best of your ability! Thank you! 1.) What will the following code output? int *numbers = new int[5]; for (int i = …
C++ Rules ***// you might be given a problem that requires writing a function or
C++ Rules ***// you might be given a problem that requires writing a function or might require creating a // structure // if you have to write a function, you do not need to write…
C++ SDL2 Hello everyone, I need to create the first draft of the AT-Robots game.
C++ SDL2 Hello everyone, I need to create the first draft of the AT-Robots game. I need to create a gray arena with black borders and with columns and rows on the right side which…
C++ SHORT ANSWER SECTION - Provide in depth answers in your own words. 1. Compar
C++ SHORT ANSWER SECTION - Provide in depth answers in your own words. 1. Compare and Contrast Dynamic vs Static memory and where in RAM memory each type of structure is placed. D…