Which of these data types requires the most amount of memory?
a. long
b. int
c. short
d. byte
a long takes 8 bytes. int 4 bytes. short 2 bytes. byte 1 byte.
You might also like to view...
What is the output of the following code?
``` public class Test { public static void main(String[] args) { int[][] matrix = {{1, 2, 3, 4}, {4, 5, 6, 7}, {8, 9, 10, 11}, {12, 13, 14, 15}}; for (int i = 0; i < 4; i++) System.out.print(matrix[i][1] + " "); } } ``` a. 1 2 3 4 b. 4 5 6 7 c. 1 3 8 12 d. 2 5 9 13 e. 3 6 10 14
The values of a component's parameters can be changed in the Property ____.
A. toolbox B. palette C. inspector D. panel
What do you click in the Macro dialog box after selecting the macro to which you want to apply modifications?
A. Run B. Edit C. Create D. Options
A device that transfers data in a character-by-character fashion is referred to as what type of device?
A. text B. block C. character D. binary