What can you use to capture a screen display so that you can save it?
A) Sticky Note B) Action Center C) Paint D) Snipping Tool
D
Computer Science & Information Technology
You might also like to view...
The total number of __________ of a nested loop is the product of the number of iterations of all the loops.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology
What would be the output of the call someThing (6) given the following definition?
void someThing (int n) { if (n > 3) { someThing (n – 1); cout << 2 * n << “ “ << n + 2 << “ “; } } a) 8 6 10 7 12 8 b) 12 8 10 7 8 6 6 5 c) 5 8 12 7 10 6 8 d) 6 5 8 6 10 7 12 8
Computer Science & Information Technology