Started on Monday, 31 July 2023, 4:43 PM
State Finished
Completed on Monday, 31 July 2023, 5:26 PM
Time taken 42 mins 24 secs
Marks 80.00/90.00
Grade 88.89 out of 100.00
Question 1
Correct
Mark 2.00 out of 2.00
What is the value of x after the following statement?
float x;
x = 3..0 + 3 + ;
1. 1.75
2. 3.25
3. 3.75 Correct option: 3
There are two issues to take into consideration.
1. The type of the variable
a. x is declared as a float
b. 2 and 5 is integer values (not 2.0)
c. = 0.4
d. But as it is integer values the result will be 0
2. The order of the operations (p17 of the study guide). In
summary, first * and / and then +
and -. But if the operations are the same – from left to right
3..0 + 3 +
Step 1. 0.75 + 3 +
Step 2. 0.75 + 3 + 0
Step 3. 0.75 + 3
Step 4. 3.75
• In Option 1 ,2 and 4 the calculations are incorrect.
4. 5.75
Your answer is correct.
The correct answer is:
3.75
d. char Correct option: 4
aChar = • Option 1 is legal, as a character variable named aChar is
"cc"; declared and the value b is assigned
to it.
• Option 2 is legal, as a character variable named aChar is
declared and the value 0 is assigned
to it. In this case 0 is a character, not a numeric value.
• Option 3 is legal, as every character has got an integer
value associated with it called its
ASCII value. When 65 is assigned to aChar, 65 will be
implicitly converted to its corresponding
character. The assignment of an integer to a character
variable or vice versa is perfectly legal.
• Option 4 is illegal, as a character variable named aChar is
declared and then a string value cc
is assigned to it. No
ignment can be between two different types.
Your answer is correct.
The correct answer is:
char aChar = "cc";
What is the output of the following code?
int value; value = 11.5;
cout << value << endl;
a. 11.5
b. 11 Correct option: 2
• Options 2 is correct as value is declared as a float value and
float value have decimal point
values.
• Option 1 is an integer value.
• Option 3 is a string value.
Les clients de Stuvia ont évalués plus de 700 000 résumés. C'est comme ça que vous savez que vous achetez les meilleurs documents.
L’achat facile et rapide
Vous pouvez payer rapidement avec iDeal, carte de crédit ou Stuvia-crédit pour les résumés. Il n'y a pas d'adhésion nécessaire.
Focus sur l’essentiel
Vos camarades écrivent eux-mêmes les notes d’étude, c’est pourquoi les documents sont toujours fiables et à jour. Cela garantit que vous arrivez rapidement au coeur du matériel.
Foire aux questions
Qu'est-ce que j'obtiens en achetant ce document ?
Vous obtenez un PDF, disponible immédiatement après votre achat. Le document acheté est accessible à tout moment, n'importe où et indéfiniment via votre profil.
Garantie de remboursement : comment ça marche ?
Notre garantie de satisfaction garantit que vous trouverez toujours un document d'étude qui vous convient. Vous remplissez un formulaire et notre équipe du service client s'occupe du reste.
Auprès de qui est-ce que j'achète ce résumé ?
Stuvia est une place de marché. Alors, vous n'achetez donc pas ce document chez nous, mais auprès du vendeur ExpertAcademy. Stuvia facilite les paiements au vendeur.
Est-ce que j'aurai un abonnement?
Non, vous n'achetez ce résumé que pour 4,71 €. Vous n'êtes lié à rien après votre achat.