Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

Web Topia -Round 1

Name:
College:
Phone-No:

1. HTML tags are used to describe document _________.

a) Definition
b) Language
c) Content
d) None of these

2. We can write HTML code using _____. Select the appropriate option(s)

a) VLC code
b) Notepad++
c) Microsoft PowerPoint
d) None of these

3. The first page of a website is called ?

a) Design
b) First page
c) Home page
d) Main page

4. What is <tt> tag in HTML?

a) It renders fonts as teletype text font style.


b) It renders fonts as true type text font style.
c) It renders fonts as truncate text font style.

5. CSS is an acronym for

a) Cascading System Style


b) Cascading Style Sheet
c) Colourful Style Sheet
d) Creative Style Sheets
6. What is the correct HTML for referring to an external style sheet?

a) <stylesheet>mystyle.css</stylesheet>
b) <style src=”mystyle.css”>
c) <link rel=”stylesheet” type=”text/css” href=”mystyle.css”>

7. FTP is an acronym for_____

a) File Transaction Protocol


b) File Transmission Protocol
c) File Transfer Protocol

8. The software that can read and render HTML documents is

a) Server
b) Compiler
c) Browser
d) Interpreter

9. JavaScript file has an extension of_____

a) .javascript
b) .java
c) .js
d) .xml

10. Inside which HTML element do we put in javascript

a) Js
b) Javascript
c) Script
d) Scripting

11. Which of the following CSS selectors are used to specify a group of elements?

a) Tag
b) Id
c) Class
d) Both class and id

12. Which of the following fram work is used to create a responsive design?

a) Django
b) Rails
c) Larawell
d) Bootstrap
13. Which of the following CSS property is used to make the text bold?

a) text-decoration:bold
b) font-weight:bold
c) font-style:bold
d) text-algin:bold

14. What will be the output of following CSS code snippet?


h1{color:”green”}

a) Nothing happens
b) Error occurs
c) Heading becomes green
d) Heading becomes dark green

15. What will be the output of following CSS code snippets?


span{
border:1px solid red;
outline: green dotted thick;
}
a) All span elements will have a green thick border and a red outline
b) All span elements will have a red border and a green dotted outline
c) All span elements will have a outer green dotted border and an inner red border
d) All span elements will have an outer red border and inner green dotted border

16.What will be the output of the following code snippet?

<script type="text/javascript">
a = 5 + "9";
document.write(a);
</script>

a) Compilation Error
b) 14
c) Runtime Error
d) 59

You might also like