The tags contain an important attribute called ____ that allows you to specify the source Web page that you want to display in each frame.

A. target
B. src
C. destination
D. to


Answer: B

Computer Science & Information Technology

You might also like to view...

The underlying data structure used by the computer during recursion is a:

a. queue b. linked list c. tree d. stack

Computer Science & Information Technology

When presenting slides during a speaking engagement, presenters can run their slides ____, depending upon the audience's needs and comprehension.

A. chaotically B. nonsequentially C. in reverse order D. without verbal accompaniment

Computer Science & Information Technology

What is the output for the second statement in the main method?

``` public class Foo { static int i = 0; static int j = 0; public static void main(String[] args) { int i = 2; int k = 3; { int j = 3; System.out.println("i + j is " + i + j); } k = i + j; System.out.println("k is " + k); System.out.println("j is " + j); } } ``` a. k is 0 b. k is 1 c. k is 2 d. k is 3

Computer Science & Information Technology

There are two solutions to the problem of determining the kth element in an unsorted list. We could first sort the list and select the element at location k, or we could create a heap and ____.

A. delete k elements from it, leaving the desired element at the root B. delete k - 1 elements from it, leaving the desired element at the root C. delete k + 1 elements from it, leaving the desired element at the root D. find the element at index k

Computer Science & Information Technology