Flash movies have the ____ file extension.

A. .swf
B. .mpg
C. .msp
D. .sfp


Answer: A

Computer Science & Information Technology

You might also like to view...

Attempting to access an array element outside of the bounds of an array, causes a(n) .

a. ArrayOutOfBoundsException. b. ArrayElementOutOfBoundsException. c. ArrayIndexOutOfBoundsException. d. ArrayException.

Computer Science & Information Technology

Computers can represent some numbers, but not all. Which numbers or type of numbers in the list below cannot be represented precisely by a computer?

a. Rational numbers b. Fractions c. 1/100 or .01 d. ½ or .5 e. None of the above.

Computer Science & Information Technology

What is a node?

a. It is an element in a binary search tree b. It is a slot in the hash table c. It is a key-value pair d. It is the start of the binary search tree

Computer Science & Information Technology

Based on the dangling-else discussion, modify the code to produce the output shown. Use proper indentation techniques. You must not make any additional changes other than inserting braces and changing the code’s indentation. We’ve eliminated the indentation from the following code to make the problem more challenging. [Note: It’s possible that no modification is necessary.]

``` if (y == 8) if (x == 5) System.out.println("@@@@@"); else System.out.println("#####"); System.out.println("$$$$$"); System.out.println("&&&&&" ``` Assuming that x = 5 and y = 8, the following output is produced: @@@@@ &&&&&

Computer Science & Information Technology