All data must be brought into main memory after it can be manipulated?
Anonymous Quiz
38%
True
62%
False
The break statement is typically used for ....... puposes?
Anonymous Quiz
62%
two
15%
three
3%
nine
20%
none of them
We use break ststement to.........?
Anonymous Quiz
27%
exite early from a loop.
5%
skip the remainder of the switch structure.
5%
skips proceed with next iteration of the loop.
62%
1&2
👍1🥰1
🥰2
. What is the final result of the following code?
int x = 5, y = 10; if (x < y) { goto label; } x = y; label: y = x;
int x = 5, y = 10; if (x < y) { goto label; } x = y; label: y = x;
Anonymous Quiz
15%
x=10. y=5.
31%
x=10 y=10
31%
The code has error
22%
The goto statement will be skipped and not executed.
👍1