To select noncontiguous rows, you:
A) click the header of the first row, then double-click the header of each additional row.
B) click the header of the first row, then right-click the header of each additional row.
C) click the header of the first row, press and hold Shift, and click the header of each additional row.
D) click the header of the first row, press and hold Ctrl, and click the header of each additional row.
D
You might also like to view...
Which of the following is the component in the docker architecture where images are stored and pulled and can be either private or public?
A. Docker daemon B. Docker client C. Docker registries D. Docker objects
?What is the output of the following code? var x = [4, 7, 11]; ? x.forEach(stepUp); ? function stepUp(value, i, arr) { arr[i] = value + 1; }
A. ?4, 7, 11 B. ?3, 7, 11 C. ?5, 8, 12 D. ?8, 14, 22