____ contain the animation's content and represent a particular instant in time.

A. Scenes
B. Tweens
C. Symbols
D. Frames


Answer: D

Computer Science & Information Technology

You might also like to view...

The ________ property of a Parameters collection element specifies the value of that element.

a) Value b) Text c) Name d) ID e) None of the above.

Computer Science & Information Technology

A stockbroker wants an application that will display a client’s stock portfolio (Fig. 26.37). All the companies that the user holds stock in should be displayed in a JComboBox when the application is loaded. When the user selects a company from the JComboBox and clicks the Stock Information JButton, the stock information for that company should be displayed in output JTextFields. The provided stocks database contains one table, stockInformation (Fig. 26.38), which has four columns—stockName, stockSymbol, shares and price. The values stored in the stockName and stockSymbol col- umns are Strings. The values stored in the shares column are ints. The values stored in the price column are doubles.


a) Copying the template to your working directory. Copy the C:Examples Tutorial26ExercisesStockPortfolio directory to your C:SimplyJava directory.
b) Copying the database to your working directory. Copy the stocks database directory from C:ExamplesTutorial26ExercisesDatabases to your C:Simply- JavaStockPortfolio directory.
c) Opening the template file. Open the StockPortfolio.java file in your text editor. d) Declaring instance variables for database processing. In line 45, declare three
instance variables—myConnection, myStatement and myResultSet—of types Con-
nection, Statement and ResultSet, respectively.
e) Adding a database connection and creating a Statement object. In line 52 in the StockPortfolio constructor, insert statements that load the database driver, connect to the stocks database and create a Statement for submitting SQL to the database. Assume that the driver class name and JDBC URL are passed to the constructor

Computer Science & Information Technology

The ________ is used to specify how the speaker's notes will display on the printed page

Fill in the blank(s) with correct word

Computer Science & Information Technology

One purpose of using a template is to save time in creating your document

Indicate whether the statement is true or false

Computer Science & Information Technology