Which of the following is used when referring to the capacity of a CD?
A. terabytes
B. megabytes
C. kilobytes
D. gigabytes
Answer: B
You might also like to view...
Analyze the following code.
``` class Test { public static void main(String[] args) { StringBuilder strBuf = new StringBuilder(4); strBuf.append("ABCDE"); System.out.println("What's strBuf.charAt(5)? " + strBuf.charAt(5)); } }``` a. The program has a compile error because you cannot specify initial capacity in the StringBuilder constructor. b. The program has a runtime error because because the buffer's capacity is 4, but five characters "ABCDE" are appended into the buffer. c. The program has a runtime error because the length of the string in the buffer is 5 after "ABCDE" is appended into the buffer. Therefore, strBuf.charAt(5) is out of range. d. The program compiles and runs fine.
Which of the following are true about RIP? (Choose all that apply.)
A. uses hop count as its metric B. sends information pertaining only to its most immediate router links C. limited to 15 hops D. packages routing information in a more compact format than OSPF
What type of job involves working at client locations for extended periods of time?
A. Field-based B. System-based C. Office-based D. Project-based
When using the automatic counter loop:
a. The ending value is optional if you have another way to exit the loop. b. The step value is optional. c. The starting value is optional. d. None of the above. e. All of the above.