The smallest data item in a computer is the _________.
a) bit
b) byte
c) kilobyte
d) None of the above.
a) bit
You might also like to view...
The line of code that will declare an array and initialize it is:
a) int list [6] = {4, 7, 8, 2, 9, 5}; b) int list [6] {4, 7, 8, 2, 9, 5}; c) int list [6] = (4, 7, 8, 2, 9, 5); d) int list [6] (4, 7, 8, 2, 9, 5);
The code that will swap the first two elements of an array called friends is:
a) friends[0] = friends[1]; friends[1] = friends[0]; b) temp = friends[1]; friends[2] = friends[1]; friends[1] = temp; c) temp = friends[0]; friends[1] = friends[0]; friends[0] = temp; d) temp = friends[0]; friends[0] = friends[1]; friends[1] = temp;
Public access rights, by default, typically allow users to ________.
a) read, execute and write a file b) read a file, but not execute or write it c) read and write a file, but not execute it d) read and execute a file, but not write it
In the Document Object Model, the root element of the document object is the __________ element.
a.
b. c.