In: Computer Science
1.What are the THREE (3) types of CSS?
a) Internal, External and Online Style Sheets
b) Embedded, Outsider and Inline Style Sheets
c) Embedded, Linking and Inline Style Sheets
2. The width, src and border are examples of an ______. *
a) entity
b) element
c) attribute
d) operation
d) Internal, External and Inline Style Sheets
3. Which of the following codes best represents inserting image from folder named images?
a) <p>Image:</p> <img src="/chrome/images.gif" alt="Google Chrome" width="33" height="32" />
b) <p>Image:</p><img src="file://images/chrome.gif" alt="Google Chrome" width="33" height="32" />
c) <p>Image:</p><img src="/images/chrome.gif" alt="Google Chrome" width="33" height="32" />
d) <p>Image:</p><img src="folder: images image file name: chrome.gif" alt="Google Chrome" width="33" height="32" />
4.Which of the following is the CORRECT HTML tag to start JavaScript?
a) <script>
b) <js>
c) <javascript>
d) <scripting>
5. How can you add a comment in JavaScript? *
a) <!--This is a comment-->
b) //This is a comment
c) "This is a comment"
d) <--! This is a comment -->
6. Select the correct HTML statement in referring to an external style sheet.
a) <link rel="stylesheet" type="text/css" href="mystyle.css">
b) <stylesheet>mystyle.css</stylesheet>
c) <style src="mystyle.css">
d) <link rel=”style" type="text/css" href="mystyle.css">
1.) What are three types of CSS.
Answer -- option D) Internal, External and Inline Style Sheets.
2.) The width, src and border are an example of an --
Answer -- Option C) Attribute
3.) Which of the following code best represent inserting image from folder named images --
Answer -- Option C) <p>Image:</p><img src="/images/chrome.gif" width="33" height="32" />
4.) Which of the following is CORRECT HTML tag to start javascript--
Answer -- Option A) <script>
5.) How can you add comment in javascript --
Answer -- Ooption A) <!--This is a comment-->
6.) Select correct HTML statement in referring to an external style sheet --
Answer -- Option A) <link rel="stylesheet" type="text/css" href="mystyle.css">