To insert video stored on your computer or network, click the Insert Video button in a content placeholder, and then in the Insert Video window next to "____," click Browse to open the Insert Video dialog box.

A. To a file
B. From a file
C. Export a file
D. Save a file


Answer: B

Computer Science & Information Technology

You might also like to view...

It is inappropriate in a business impact analysis to consider the effect of such events as a reduction of the funds to support preparedness, or an unanticipated increase in the cost of maintaining the response at a given level of desirability.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

What is the Work buffer? Name two ways of writing the contents of the Work buffer to the disk.

What will be an ideal response?

Computer Science & Information Technology

Analyze the following code:

``` import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.layout.HBox; import javafx.scene.layout.Pane; import javafx.geometry.Insets; import javafx.stage.Stage; import javafx.scene.image.Image; import javafx.scene.image.ImageView; public class Test extends Application { @Override // Override the start method in the Application class public void start(Stage primaryStage) { // Create a pane to hold the image views Pane pane = new HBox(10); pane.setPadding(new Insets(5, 5, 5, 5)); Image image = new Image("www.cs.armstrong.edu/liang/image/us.gif"); pane.getChildren().addAll(new ImageView(image), new ImageView(image)); // Create a scene and place it in the stage Scene scene = new Scene(pane); primaryStage.setTitle("ShowImage"); // Set the stage title primaryStage.setScene(scene); // Place the scene in the stage primaryStage.show(); // Display the stage } /** * The main method is only needed for the IDE with limited * JavaFX support. Not needed for running from the command line. */ public static void main(String[] args) { launch(args); } }``` a. The program runs fine and displays two images. b. new Image("www.cs.armstrong.edu/liang/image/us.gif") must be replaced by new Image("http://www.cs.armstrong.edu/liang/image/us.gif"). c. The image object cannot be shared by two ImageViews. d. The addAll method needs to be replaced by the add method.

Computer Science & Information Technology

A _________ is a logo or symbol that represents a brand.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology