If you want to have a self-playing presentation, such as one that might be displayed in a kiosk, you use the ________ tab to set up the changing of the slides
A) Insert
B) Slide Show
C) Animations
D) Transitions
D
You might also like to view...
Suppose the days of the year are numbered from 1 to 365 and January 1 falls on a Tuesday as it will in 2019. What is the correct For statement to use if you want only the numbers for the Fridays in 2019?
(A) For i As Integer = 3 to 365 Step 7 (B) For i As Integer = 1 to 365 Step 3 (C) For i As Integer = 365 To 1 Step -7 (D) For i As Integer = 3 To 365 Step 6
After the following program is finished, how many bytes are written to the file t.dat?
``` import java.io.*; public class Test { public static void main(String[] args) throws IOException { DataOutputStream output = new DataOutputStream( new FileOutputStream("t.dat")); output.writeChars("ABCD"); output.close(); } }``` a. 2 bytes. b. 4 bytes. c. 8 bytes. d. 12 bytes. e. 16 bytes.
Which of the following classes are in the header file
A. X B. runtime_error C. bad_exception D. overflow_error E. exception
A ________ drive has no moving parts
A) solid state B) hard disk C) compact disc D) Blu-ray