When you insert a Flash movie in a Web page, Dreamweaver places the code for the movie into ____.

A. the page
B. a new page
C. the Graphics folder
D. the Stylesheets folder


Answer: A

Computer Science & Information Technology

You might also like to view...

How would you best describe the purpose of the following code?

``` f = 0; for (i = 1; i < N; ++i) if (a[i] >= a[f]) f = i; ``` a. Rearrange the first N components of array a in descending order. b. Rearrange the first N components of array a in ascending order. c. Place the largest component of array a in position N. d. Compute the value of the largest component in array a. e. Determine the subscript of the last occurrence of the largest of the first N components of array a.

Computer Science & Information Technology

A _________________________ is a form of virtualization software that simulates a computer that resides on physical server but appears to consumers as an independent server.

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

Computer Science & Information Technology

Why does this version of the swap function fail to work? Is there a fix?

``` void swap(int & lhs, int& rhs) { lhs = rhs; rhs = lhs; } ``` a) Of course it works! Just look at it. It clearly swaps the two parameters! b) It fails because the programmer forgot to make the parameters call-by-reference. c) It fails OK, and we can fix it we can just reverse the order of the lines. d) It fails because the first line destroys the old value of lhs without saving it. Then both variables have the old value of rhs in them. e) To fix this, we must save the lhs value in a local variable before making the first assignment indicated, then instead of the second line, assign the rhs the value of the local variable: int local = lhs; lhs = rhs; rhs = local;

Computer Science & Information Technology

Which of the following is a difference between bitmap images and vector images?

A. ?Bitmap images use mathematical formulas to represent image content, whereas vector images are created by coloring pixels. B. ?Bitmap images cannot be enlarged and still maintain their quality, whereas vector images can be resized and otherwise manipulated without loss of quality. C. ?Bitmap images are programmed in terms of numbers, whereas vector images are programmed in terms of characters. D. ?Bitmap images are usually named with the extension .XLSX, whereas vector images are named with the extension .VNP.

Computer Science & Information Technology