To position an element at a specific spot while the rest of the page scrolls, you use ____ positioning.

A. static
B. relative
C. absolute
D. fixed


Answer: D

Computer Science & Information Technology

You might also like to view...

The _____ task management technique of an operating system supports running a program on more than one central processing unit (CPU).

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

Computer Science & Information Technology

What is the purpose of the paging procedure in Bluetooth?

What will be an ideal response?

Computer Science & Information Technology

What is y displayed in the following code?

``` public class Test1 { public static void main(String[] args) { int x = 1; int y = x = x + 1; System.out.println("y is " + y); } } ``` a. y is 0. b. y is 1 because x is assigned to y first. c. y is 2 because x + 1 is assigned to x and then x is assigned to y. d. The program has a compile error since x is redeclared in the statement int y = x = x + 1.

Computer Science & Information Technology

Which of the following is not true when finding and replacing text?

a. The Replace command can be found in the Editing group of the Home tab. b. The Replace command enables you to locate all occurrences of specified text and replace it with alternative text. c. The Replace command is the easiest way to change the appearance of the text, layout, and design of a slide. d. A message box will display indicating the number of replacements that were made.

Computer Science & Information Technology