Top 50+ Solved Introduction to Web Programming MCQ Questions Answer
Q. Which tag inserts a line horizontally on a web page?
a. <hr>
b. <line>
c. <line direction=”horizontal”>
d. <tr>
Q. Which tag allows us to add a row in a table?
a. <td> and </td>
b. <cr> and </cr>
c. <th> and </th>
d. <tr> and </tr>
Q. How can we make an e-mail link?
a. <a href=”xxx@yyy”>
b. <mail href=”xxx@yyy”>
c. <mail>xxx@yyy</mail>
d. <a href=”mailto:xxx@yyy”>
Q. What is the correct HTML for adding a background color?
a. <body color=”yellow”>
b. <body bgcolor=”yellow”>
c. <background>yellow</background>
d. <body background=”yellow”>
Q. Choose the correct HTML tag for the smallest size heading?
a. <heading>
b. <h6>
c. <h1>
d. <head>
Q. Which tag creates a check box for a form in HTML?
a. <checkbox>
b. <input type=”checkbox”>
c. <input=checkbox>
d. <input checkbox>
Q. To create a combo box (drop down box) which tag will we use?
a. <select>
b. <list>
c. <input type=”dropdown”>
d. all of above