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

answer question number 27 and show answer step by step C the dawhle statement D,

ID: 3843121 • Letter: A

Question


answer question number 27 and show answer step by step

C the dawhle statement D, the switch statement imes to repeat the execution Which control statement wich is best used when you know how many to execute from among n The control statement wtchistest used when you eeed to choose which statements mamy and the condition r can beespremedansome esplession s not necessarily integer Tou want to repeat poupafstatements over and over based at least once is the L None of these are C3 D,6 Now these times A TRUE FALSE in the ATRIA FALSE Which of the to read A Andie Which of the followi 24. Which repetition 5. The argument and parameters A. must agree in a. must aeree in dana type and dentiser name. C in number and onder. 20. the followin function turtidoubles Nam, double& Num A Function tvn2 can modify the arguments passed to both and Br function funi can not modity the arguments parised to Num1 andNum2 C. Function furl can only modaty the argument passed to Numi D. Function fun1 can only modify the argument passed to Num2 restriction on arrays A. The size of the array must be specned when the program is written. does not do range checkine on amay subscripts. C. The assoment operator may not be used to copy one array to another Al of the above are restrictions on arrays in C+

Explanation / Answer

27)

Statement A is a limitation. No dynamic resizing allowed. So we have to declare the size of the array at the program itself.

Statement B is also a limitation: C/C++ has no bounds checking on arrays. i.e., No range checking on array subscript.

Statement C: We do not use the assignment operator to copy the array to another But we can use this operator with the function to copy.

So the answer is D.