To insert a video, click the ____ button on the content placeholder.

A. Insert SmartArt Graphic
B. Insert Chart
C. Insert Picture from File
D. Insert Media Clip


Answer: D

Computer Science & Information Technology

You might also like to view...

How many times will HI be displayed when the following lines are executed?

``` Dim c As Integer = 12 Do lstBox.Items.Add(";HI") c += 3 Loop Until (c >= 30) ``` (A) 5 (B) 9 (C) 6 (D) 4 (E) 10

Computer Science & Information Technology

Case-based Critical Thinking QuestionsCase 11-1Ryan is new to the use of XML, so he has a lot of basic questions about the fundamentals, including some philosophical questions about the language. Ryan has heard that an XML document must be well-formed. Which of the following is NOT a characteristic of a well-formed document?

A. It contains no syntax errors. B. It has a prolog, body, and epilog. C. It includes an XML declaration. D. It satisfies the rules of its DTD or schema.

Computer Science & Information Technology

What happens if the file test.dat does not exist when you attempt to compile and run the following code?

``` import java.io.*; class Test { public static void main(String[] args) { try { RandomAccessFile raf = new RandomAccessFile("test.dat", "r"); int i = raf.readInt(); } catch(IOException ex) { System.out.println("IO exception"); } } } ``` a. The program does not compile because raf is not created correctly. b. The program does not compile because readInt() is not implemented in RandomAccessFile. c. The program compiles, but throws IOException because the file test.dat doesn't exist. The program displays IO exception. d. The program compiles and runs fine, but nothing is displayed on the console.

Computer Science & Information Technology

________ is the process of analyzing large amounts of data to identify trends and patterns in the data

Fill in the blank(s) with correct word

Computer Science & Information Technology