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.
Voordelen van het kopen van samenvattingen bij Stuvia op een rij:
Verzekerd van kwaliteit door reviews
Stuvia-klanten hebben meer dan 700.000 samenvattingen beoordeeld. Zo weet je zeker dat je de beste documenten koopt!
Snel en makkelijk kopen
Je betaalt supersnel en eenmalig met iDeal, creditcard of Stuvia-tegoed voor de samenvatting. Zonder lidmaatschap.
Focus op de essentie
Samenvattingen worden geschreven voor en door anderen. Daarom zijn de samenvattingen altijd betrouwbaar en actueel. Zo kom je snel tot de kern!
Veelgestelde vragen
Wat krijg ik als ik dit document koop?
Je krijgt een PDF, die direct beschikbaar is na je aankoop. Het gekochte document is altijd, overal en oneindig toegankelijk via je profiel.
Tevredenheidsgarantie: hoe werkt dat?
Onze tevredenheidsgarantie zorgt ervoor dat je altijd een studiedocument vindt dat goed bij je past. Je vult een formulier in en onze klantenservice regelt de rest.
Van wie koop ik deze samenvatting?
Stuvia is een marktplaats, je koop dit document dus niet van ons, maar van verkoper ExpertAcademy. Stuvia faciliteert de betaling aan de verkoper.
Zit ik meteen vast aan een abonnement?
Nee, je koopt alleen deze samenvatting voor €4,71. Je zit daarna nergens aan vast.