The ____ statement provides an unconditional transfer of control to some other statement in a program.
A. jump
B. goto
C. label
D. transfer
Answer: B
You might also like to view...
The binary search algorithm in the text makes recursive on subarrays of the array passed to the algorithm. The range passed to the search function is first to last. The search algorithm makes recursive calls on the left or right subarray that target will be in, if the target is present. What are the left and right ends of the left subarray?
a. first, mid – 1 b. first, mid + 1 c. mid – 1, left d. mid + 1, left e. left, mid
Convert 168 and 123 to binary and then compute their addition. How many bytes does it take to represent each number? How many bytes are needed for the answer?
What will be an ideal response?
Ultrabooks often have better battery life than a laptop
Indicate whether the statement is true or false
In a do…while statement, the keyword while appears __________ .
a) after the do keyword, but before the do…while body b) after the do keyword, as the last state- ment in the body of the do…while c) before the do keyword d) after the do keyword and after the do…while body