Q: 1 The correct sequence of HTML tags for starting a webpage is –
Head, Title, HTML, Body
HTML, Body, Title, Head
Head, Title, HTML, Body
HTML, Head, Title, Body
[ Option D ]
The correct and standard sequence of HTML tags to start a web page is:
This sequence ensures proper structure and rendering of the web page in browsers.
<html>
<head>
<title>Page Title</title>
</head>
<body>
<!-- Displayable Content -->
</body>
</html>
Q: 2 Which tag is used to create a drop-down menu in website using HTML?
<input>
<select>
<ul>
<menu>
[ Option B ]
The <select> tag in HTML is used to create a drop-down list. It is usually combined with <option> tags which define the options available in the menu.
<select name="Course">
<option value="BCI">Basic Computer Instructor</option>
<option value="SCI">Senior Computer Instructor</option>
<option value="Patwar">RSSB Patwar Exam</option>
<option value=”IA”>DOITC Informatics Assistant</option>
</select>
Q: 3 Which element is used to embed a multimedia object in an HTML document?
<em> tag
<embed> tag
<emb> tag
<embedded> tag
[ Option B ]
The <embed> tag in HTML is used to embed multimedia content such as audio, video, or interactive applications. It is a self-closing tag and requires attributes like src, type, width, and height to define the media.
<embed src="video.mp4" type="video/mp4" width="400" height="300">
The <embed> tag differs from <audio> and <video> tags in modern HTML5.
Q: 4 Which tag is used for bullet list in HTML?
<UL>
<DD>
<OL>
<UI>
[ Option A ]
In HTML, lists are used to group items together.
| TAG | TYPE | DESCRIPTION |
|---|---|---|
| <UL> | Unordered List | Creates a bullet list where order does not matter. |
| <OL> | Ordered List | Creates a numbered list where order matters. |
| <DD> | Description Definition | Used inside <DL> for descriptions. |
Q: 5 What is the correct HTML for creating a hyperlink?
<a name= : "">A</a>
<a> B </a>
<a href="http://www.example.com">example</a>
<a url= "http://www.example.com">example</a>
[ Option C ]
In HTML, a hyperlink is created using the <a> (anchor) tag. The href attribute specifies the URL of the page the link goes to. The text between the opening <a> and closing </a> tags is the clickable part that the user sees.
<a href="https://www.surakuacademy.com">Suraku Academy</a>
Thank you so much for taking the time to read my Computer Science MCQs section carefully. Your support and interest mean a lot, and I truly appreciate you being part of this journey. Stay connected for more insights and updates! If you'd like to explore more tutorials and insights, check out my YouTube channel.
Don’t forget to subscribe and stay connected for future updates.