HTML and Web Technologies Quiz
Test your knowledge of HTML tags, attributes, and web development fundamentals
Questions
What is the correct HTML for adding a background color
- <background>yellow</background>
- <body background="yellow">
- <body style="background-color:yellow">
- <color = "yellow">
Choose the correct HTML tag to make a text bold
- <bold>
- <bld>
-
- <text="bold">
Choose the correct HTML tag to make a text italic
-
- <italic>
- <text="italic>
- <ui>
What is the correct HTML for creating a hyperlink
- <a url="http://www.w3schools.com">W3Schools.com</a>
- <a href="http://www.w3schools.com">W3Schools</a>
- <a name="http://www.w3schools.com">W3Schools.com</a>
- <a>http://www.w3schools.com</a>
How can you create an e-mail link?
- <mail>xxx@yyy</mail>
- <mail href="xxx@yyy">
- <a href="xxx@yyy">
- <a href="mailto:xxx@yyy">
How can you open a link in a new browser window
- <a href="url" new>
- <a href="url" target="_blank">
- <a href="url" target="new">
- <a hreaf="url;_blank">
What is used to create table of contents of a large document in html?
- Hyperlinks
- Named anchors
- Reference entities
- None of the above
In the following piece of code, what should be the value given to the attribute selected to indicate a preselected value in the drop down menu when the page loads?
- true
- false
- selected
- enabled
How will the following be displayed in a web page?&lt;blockquote&gt;This is a blockquote&lt;/blockquote&gt;
- ‘This is a blockquote’ will be underlined
- ‘This is a blockquote’ will be italicized
- ‘This is a blockquote’ will be made bold
- ‘This is a blockquote’ will appear with white spaces before and after it.
Which tag do we use to redirect browser to a nonframeset version of the web site if frames are not supported by the browser?
- noframes
- iframe
- noframesupport
- None of the above
What is the title attribute used for?
- To define title of the HTML document
- To instruct browser where to find stylesheets, metadata etc
- To show additional information about an element as a tooltip text when the mouse moves over it
- None of the above
Which tag is used to toggle control when the user clicks on the text within the element?
- toggle
- label
- caption
- None of the above
Inversion of Control Pattern (IOC) is also known as ?
- Inversion Injection
- Dependency Injection
- Setter Injection
- Pattern Injection
Does Spring enable POJO programming?
- True
- False
Features of Spring ?
- Light Weight
- IOC
- Bean Factory
- AOP
- MVC Framework
How many modules are there in Spring?
- 5
- 6
- 7
- 8
Loose coupling is achieved in Spring using _________ ?
- AOP
- IOC
- Container
- MVC Framework
Can you place Sub page into Grid?
- True
- False
Spring supports following injection?
- Interface Injection
- Getter Injection
- Constructor Injection
- Destructor Injection