When a Flash movie is selected, clicking the ____ button in the Property inspector launches Adobe Flash and opens the .fla file specified in the Src text box.

A. Play
B. Edit
C. Stop
D. Class


Answer: B

Computer Science & Information Technology

You might also like to view...

What value is returned by function result?

``` int result(const int a[], int n) { int i, r; r = 0; for (i = 1; i < n; ++i) if (a[i] > a[r]) r = i; return (r); } ``` a. The subscript of the largest of the first n elements of array a. b. The value of the largest of the first n elements of array a. c. The subscript of the smallest of the first n elements of array a. d. The value of the smallest of the first n elements of array a. e. The subscript of the last element greater than its predecessor within the first n elements of array a.

Computer Science & Information Technology

What is the printout of the following code?

``` #include using namespace std; class C { public: string toString() { return "C"; } }; class B: public C { string toString() { return "B"; } }; class A: public B { virtual string toString() { return "A"; } }; void displayObject(C *p) { cout << p->toString(); } int main() { displayObject(&A()); displayObject(&B()); displayObject(&C()); return 0; } ``` . BBB b. CBA c. CCC d. AAA e. ABC

Computer Science & Information Technology

You can rename a folder by right-clicking the folder name in the Navigation Pane

Indicate whether the statement is true or false

Computer Science & Information Technology

Lumension and HFNetCHkPro are examples of which of the following?

a. Antivirus software b. IDS c. Patch management systems d. Viruses

Computer Science & Information Technology