QUESTION 34 For this question, assume that the following lines of code have been executed double x = 3.1415; //line 1 do
Posted: Sat May 14, 2022 7:50 pm
QUESTION 34 For this question, assume that the following lines of code have been executed double x = 3.1415; //line 1 double y = 9.8765: Mine 2 double &ref = x; //line 3 //line 4 What does line 4 do? O a. Changes the value in y to 3.1415 O b. Makes the variable rof an alias for variable y Oc Changes the value in x to 9.8765 ref=y: QUESTION 35 What is wrong with the declaration? char &m; O a. The variable is a pointer and a pointer is declared using a Ob. The address of a variable cannot be found when it's declared Oc. It is not initialized