Include the keyword _____ in a media query to cause older, non-supporting browsers to ignore the media query.

a. viewport
b. meta
c. skip
d. only


d. only

Computer Science & Information Technology

You might also like to view...

Based on the dangling-else discussion, modify the code to produce the output shown. Use proper indentation techniques. You must not make any additional changes other than inserting braces and changing the code’s indentation. We’ve eliminated the indentation from the following code to make the problem more challenging. [Note: It’s possible that no modification is necessary.]

``` if (y == 8) if (x == 5) System.out.println("@@@@@"); else System.out.println("#####"); System.out.println("$$$$$"); System.out.println("&&&&&"); ``` Assuming that x = 5 and y = 8, the following output is produced: @@@@@ $$$$$ &&&&&

Computer Science & Information Technology

An Excel 2007 template will be saved to disk with the extension of:

A) xltx. B) xlsx. C) xlt. D) xls.

Computer Science & Information Technology

Older programming languages implement arrays as static data structures which are inefficient. What do modern languages use to remedy the problems of static arrays?

A. dynamic arrays B. linked lists C. data stacks D. hash tables

Computer Science & Information Technology

Which of the following statements about graphs is false?

A. A graph is a collection of nodes and a collection of segments connecting pairs of nodes. B. Graphs are a directed tree structure. C. A path is a sequence of vertices in which each vertex is adjacent to the next one. D. Graphs may be directed or undirected. E. The degree of a vertex is the number of lines incident to it.

Computer Science & Information Technology