1.
What is HTML?
Correct Answer
C. Hyper Text Markup Language
Explanation
HTML stands for Hyper Text Markup Language. It is a standard markup language used for creating and structuring the content of web pages. HTML uses tags to define and format the elements within a webpage, such as headings, paragraphs, images, links, etc. It is the backbone of the World Wide Web and is essential for designing and displaying webpages correctly in web browsers.
2.
Which is a reason why webpage is useful?
Correct Answer
D. All of the above
Explanation
The reason why a webpage is useful is because it provides a cheap and easy way to spread information to a large audience. Additionally, it serves as another medium to market your business. Lastly, having a personal website allows you to let the world know about you. Therefore, the correct answer is "All of the above."
3.
___________is a small, simple-text program that has features notepad does not. Such features include: spell check, code highlighting etc.
Correct Answer
D. Crimson Editor
Explanation
Crimson Editor is a small, simple-text program that offers additional features like spell check and code highlighting, which are not available in Notepad. It is a more advanced text editor compared to Notepad and can be used for coding and editing documents.
4.
What is the meaning of these tags at the end of your html code?
Correct Answer
D. Closing tags
Explanation
Closing tags in HTML are used to mark the end of an element or a section of code. They are represented by the same tag name as the opening tag, but with a forward slash (/) before the tag name. Closing tags are important because they ensure that the HTML code is properly structured and follows the rules of nesting. Without closing tags, the browser may interpret the code incorrectly and the webpage may not display as intended.
5.
What does the tag use to tell the browser?
Correct Answer
A. The title of your page or the topic of your web page
Explanation
The correct answer is "The title of your page or the topic of your web page." This is because the title tag in HTML is used to specify the title of the webpage, which is displayed in the browser's title bar or tab. It is also used by search engines to determine the topic of the webpage and display it in search results.
6.
What does the tag
mean?
Correct Answer
B. The 2nd largest header.
Explanation
The tag "" is used to define the second largest header in HTML. It is a formatting element that represents a section heading. The header tags in HTML are used to structure the content on a webpage, with "" being the largest and "" being the smallest. So, the correct answer is "The 2nd largest header."
7.
What does the tag
mean?
Correct Answer
C. ParagrapH tag
Explanation
The correct answer is "Paragraph tag". The paragraph tag, represented by , is an HTML tag used to define a paragraph of text. It is used to structure and format text content on a webpage. This tag is commonly used to create separate paragraphs and add line breaks between them.
8.
Where must you used
, ?
Correct Answer
C. At the beginning and ending of the paragrapH
Explanation
Commas and question marks are used at the beginning and ending of a paragraph to indicate the start and end of a sentence. This helps to separate different ideas or statements within the paragraph and make the writing more organized and clear.
9.
What is an example of a web browser?
Correct Answer
D. All of the above
Explanation
All of the options listed are examples of web browsers. Internet Explorer, Fire Fox, and Opera are all well-known web browsers that allow users to access and navigate the internet. "All of the above" is the correct answer because it includes all the options provided, indicating that each option is a valid example of a web browser.
10.
Which one of these tags are missing from this HTML code?
Your site's content goes here
Correct Answer
D. Body
Explanation
The missing tag from the HTML code is the opening tag. The code provided only includes the closing tag, indicating the end of the body section. The opening tag is necessary to indicate the start of the body section where the main content of the website is placed.