The Home button displays your home page, which is _____.

A. the most frequently visited Web site
B. the main page of your Web site
C. the page that appears when you first start your browser
D. the browser's download page


Answer: C

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1. Mouse interaction with the GUI is limited to click, press, and move. 2. MouseUp and MouseDown events are used when the mouse is moved up or down. 3. The Button property is used to determine which mouse button is clicked left, middle, right or none. 4. The Clicks property of class MouseEventArgs is used to determine the number of times a mouse button was clicked. 5. Whenever the mouse moves, the system raises a MouseMove event at a rate predetermined by the operating system.

Computer Science & Information Technology

To add borders around the outside and inside edges of selected cells, click both Outline and Inside buttons in the _____ section in the Format Cells dialog box.

A. Border B. Presets C. Style D. Line

Computer Science & Information Technology

To add a new element X to a binary search tree:

A) If the tree is empty, make X the root of a new tree; otherwise, compare X to the root, if X is less, put it in the left subtree, if it is greater, put it in the right subtree B) First add X in the position of the root. If X is a leaf, or is less than its children, stop. Otherwise, repeatedly swap X with the smaller of its two children until X becomes a leaf or becomes less than its children. C) Add X as a leaf, taking care to preserve the search tree structure. If X is now the root, or is greater than its parent, stop. Otherwise, repeatedly swap X with its parent until X becomes the root or becomes greater than its parent. D) Insert X using the same algorithm for insertion in an AVL tree. If the tree remains balanced, stop. Otherwise, execute a rebalancing operation.

Computer Science & Information Technology

To remove duplicate records (rows),

A) convert it to a Range. B) select any cell in the table, then click Remove Duplicates from the Tools group on the Table Tools Design tab. C) click in a cell and on the Home tab, click the Remove arrow in the Cells group. D) click the Remove tab and then Duplicate in the Records group.

Computer Science & Information Technology