Which term describes a technology that spreads data across multiple drives?
A. Inheritance
B. Macro
C. RAID
D. Honeypot
Answer: C
You might also like to view...
____ decides who should be trusted.
A. Logical security B. Virtual security C. Physical security D. Personnel security
A table with a width set to 600 pixels will look _______ on a monitor with resolution set to 640 x 480 than on a monitor with resolution set to 1024 x 768
a. larger b. smaller c. the same d. more distorted
String a = "Mathematics"; String b = "Computer Science"; String c = (a + " and " + b); int n = c.length(); int m = a.indexOf( "the" ); int p = a.indexOf( "math" ); String d = b.substring( 3, 5 ); String e = b.substring( b.indexOf( "S" ) ); Value of p?
What will be an ideal response?
How many times will the loop steps in the instructions corresponding to the following pseudocode be executed, assuming 5 values - 5, 6, 7, 3, 0 - are input, one on each record?
``` Read SCORE DOWHILE SCORE > 0 Write SCORE ENDDO ``` a) 0 b) 4 c) 5 d) infinite