Home /
Expert Answers /
Computer Science /
question-1-which-control-structure-does-the-following-flowchart-represent-expression-true-stateme-pa543
(Solved): Question 1 Which control structure does the following flowchart represent? expression true- stateme ...
Question 1 Which control structure does the following flowchart represent? expression true- statement false O If else Selection O While Loop O For Loop O Do. while Loop
Question 2 What will be printed after executing the following C++ code? #include using namespace std; int main() { int number = 109; for (;;) cout << number; return 0; } O a. Error O b. 109 will be printed infinte times O c. 109 O d. None of the answers
Moving to another question will save this response. Question 3 What is the value of item index [5] in the following array? int num[10] = {9, 8, 7, 6, 5); 6 5 OO A Moving to another question will save this response.
Moving to another question will save this response. Given the following void function prototype: void CSBP112(string name, int& score, char& grade); Question 4 Which of the following is a value (copied) parameter? O CSBP112 Ograde score name Moving to another question will save this response.
Question 5 double cppFinal (int first, double second) { double temp; if (second > first) temp = first second; else temp = : first second; - return temp; } Which of the following is a valid call to the method in the accompanying figure? O cppFinal (int 5, double 4.8); O cppFinal (5, 4.8); O cppFinal (4.8); O double cppFinal (5, 4.8);
Solutions: Question 1: The correct option is option 2nd which is the while loop. Explanation: The given flowchart is of a while loop. Because it checks first the condition and if true then run the statement otherwise do