adplus-dvertising
31. Currently clicking and holding down the mouse button on represents ___________ pseudo class.
a. a:link
b. a:visited
c. a:active
d. a:hover
Discuss
Answer: (c).a:active

32. Following CSS code is written. Guess in which color link will be displayed if user has not clicked on any of the link before.
<style>
            a:link {
                color:#FF0000;
            }
            a:visited {
                color:#00FF00;
            }
            a:hover {
                color:#FF00FF;
            }
            a:active {
                color:#0000FF;
            }
        </style>
a. #00FF00
b. #FF0000
c. #FF00FF
d. #0000FF
Discuss
Answer: (b).#FF0000

33. Which property is used to specify typefaces ?
a. font-family
b. font-name
c. font-face
d. font-type
Discuss
Answer: (a).font-family

34. How many type faces inside property "font-family" ?
a. 1
b. Maximum 2
c. No Limit
d. Maximum 3
Discuss
Answer: (c).No Limit

35. Fonts such as Times New Roman which have spaces in between must be wrapped inside ______ .
a. Quotation Mark
b. Round Brackets
c. Triangular Brackets
d. Curly Braces
Discuss
Answer: (a).Quotation Mark

36. Which of the following fonts are Generic Fonts ?
a. Cursive
b. Serif
c. Monospace
d. All of the above
Discuss
Answer: (d).All of the above

37. "Courier / Courier New" resembles following generic font family -
a. monospace
b. serif
c. cursive
d. fantasy
Discuss
Answer: (a).monospace

38. Multiple font faces are separated by __________ .
a. Semicolon
b. Comma
c. Dot
d. Slash
Discuss
Answer: (b).Comma

39. A group of font families with a similar look -
a. Generic Families
b. Cluster Families
c. Node Families
d. Grouped Families
Discuss
Answer: (a).Generic Families

40. In Descendant Selector , style is applied to element based on ________ .
a. whether element have sub element or not
b. whether element have only 2 sub elements or not
c. whether element is of particular type or not
d. None of These
Discuss
Answer: (a).whether element have sub element or not

Page 4 of 15