Posts

Showing posts from May, 2015

Objective Questions on CSS Syntax and Property set-6

1) ....... media type is used for use with printed material and documents viewed onscreen in print preview mode. A. Print B. Projection C. Aural D. Screen 2) In CSS length measurement unit ....... defines a measurement in picas. A. pi B. pc C. pt D. px 3) In CSS length measurement unit ......defines a measurement in screen pixel. A. pi B. pc C. pt D. px 4) ........ defines a measurement relative to a font's x-height. The x-height is determined by the height of the font's lowercase letter x. A. cm B. em C. ex D. hx 5) Which of the following is the correct CSS code to set the background color of all h1, h2 and h3 elements to orange. A. h1.h2.h3{background-color:orange;} B. h1, h2, h3{background-color:orange;} C. h1 h2 h3{background-color:orange;} D. h1, h2, h3{set-background:orange;} 6) The CSS selector E>F selects ... A. direct decedents B. adjacent siblings C. preceding siblings D. all elements 7) The CSS selector E-F selects ..... A. direct decedents B. adjacent siblings C.

Solved Multiple Choice Questions on Basic CSS set-5

1) All of the following statement about CSS styles are True Except. A. External style sheets can set and update styles for many documents at once. B. In inline style, it can be easily control style to a single character instance. C. In some cases @import is used in inline styles D. There is no additional network requests required to retrieve style information. 2) ............. requires extra download round-trip for t he style sheet, which might delay page rendering, particularly when multiple files are in use. A. External Style Sheets B. Document Wide Style C. Inline Style D. All of the above 3) For .............., it needs to reapply style information throughout the document and outside documents. A. External Style Sheets B. Document Wide Style C. Inline Style D. All of the above 4) Which of the following is the correct example of document wide style in CSS. A. <h1 style="color:red;"> I am red !</h1> B. <h1 color="red"> I am red ! </h1> C. &