What is the output of the following code?
int a = 1;
int c = 0;
while (c < 4)
{
a = a + 1;
cout << a;
c = c + 1;
}
a) 2345
b) 1234
c) 23456
d) 12345
a) 2345
You might also like to view...
You cannot store a mixture of __________ in an array.
Fill in the blank(s) with the appropriate word(s).
A composition or “has-a” relationship is represented in the UML by:
a. Attaching a solid diamond to the association line. b. Attaching a solid triangle to the association line. c. Making the association line bolded. d. Making the association line dashed
The reverse method is defined in this section. What is list1 after executing the following statements?
``` int[] list1 = {1, 2, 3, 4, 5, 6}; int[] list2 = reverse(list1); ``` a. list1 is 1 2 3 4 5 6 b. list1 is 6 5 4 3 2 1 c. list1 is 0 0 0 0 0 0 d. list1 is 6 6 6 6 6 6
A ________ is informational text that displays when you point to commands or thumbnails on the Ribbon
A) hyperlink B) KeyTip C) ScreenTip D) snip