Sail E0 Webinar

MCQs

Total Questions : 129 | Page 5 of 13 pages
Question 41. ___________ describes CSS properties to manipulate the position of “ruby”, which are small annotations on top of or next to words, especially common in Chinese and Japanese.
  1.    align
  2.    ruby
  3.    lang
  4.    text-align
 Discuss Question
Answer: Option B. -> ruby
Question 42. ___________ has a grammar but unlike traditional (X)HTML it is not defined with a document type definition.
  1.    CSS 1
  2.    CSS 2
  3.    CSS 2.1
  4.    CSS 3
 Discuss Question
Answer: Option C. -> CSS 2.1
Question 43. What will happen in this case?
h1 {color: red text-decoration: underline; font-style: italic;}
  1.    color: red, text-decoration: underline and font-style: italic all works
  2.    text-decoration: underline and font-style: italic works
  3.    color: red, text-decoration: underline works
  4.    only font-style: italic works
 Discuss Question
Answer: Option D. -> only font-style: italic works
Question 44. What will happen in this case?
h1 {color: "green";}
  1.    heading becomes green
  2.    heading becomes dark-green
  3.    error occors
  4.    nothings happen
 Discuss Question
Answer: Option D. -> nothings happen
Explanation: The correct syntax for setting the color of a heading using CSS is h1 {color: green;}, not h1 {color: "green";}. The quotation marks around the color value are not valid so it nothing will happen. as Error in css is ignored
Question 45. Which of the following is the correct way to applying style to a document?
  1.    Use an external style sheet, either by importing it or by linking to it
  2.    Directly embed a document-wide style in the head element of the document
  3.    Set an inline style rule using the style attribute directly on an element
  4.    All of the mentioned
 Discuss Question
Answer: Option D. -> All of the mentioned
Question 46. What does screen media type is used for?
  1.    For use with all devices
  2.    For use with handheld devices
  3.    For use with color computer screens
  4.    For use with television-type devices
 Discuss Question
Answer: Option C. -> For use with color computer screens
Question 47. For Inline Style don’t need to reapply style information throughout the document and outside documents.State true or false.
  1.    True
  2.    False
 Discuss Question
Answer: Option B. -> False
Question 48. For document-Wide StyleCan easily control style document by document.State true or false.
  1.    True
  2.    False
 Discuss Question
Answer: Option A. -> True
Question 49. Which of the following measurement defines a measurement relative to a font’s x-height?
  1.    ex
  2.    em
  3.    pt
  4.    px
 Discuss Question
Answer: Option A. -> ex
Question 50. For External Style Sheets in some cases when @import is used, the browser may cause a rendering “flash” under slow loading conditions.State true or false.
  1.    True
  2.    False
 Discuss Question
Answer: Option A. -> True

Latest Videos

Latest Test Papers