Given the following code snippet, what line is executed immediately after line 7?

```
1. var x = 1; var count = 20; var timer;
2. function countIt()
3. {
4. count = count – x;
5. document.write(count);
6. }
7. timer = setTimeOut('countIt()', 2000);
8. document.write("Count down: ");
```

a. line 1
b. line 2
c. line 4
d. line 8


b. line 2

Computer Science & Information Technology

You might also like to view...

A function may return a pointer, but the programmer must ensure that the pointer

A) is pointing to an object that is still valid after the return of the function. B) has been assigned an address. C) was received as a parameter by the function. D) has not previously been returned by another function. E) None of the above

Computer Science & Information Technology

In the context of a mathematical graph, what is a shortest path?

What will be an ideal response?

Computer Science & Information Technology

Which multicast address is used by DHCP clients to speak to DHCP servers and DHCP relay agents?

A) FF02::2:1 B) FF02::1:2 C) FF02::2 D) FF02::1

Computer Science & Information Technology

To select an entire row or column, move the ____________________ pointer to the left of a row or above a column and then click when a small black arrow selection pointer appears.

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

Computer Science & Information Technology