
webtech quizz-3

Quiz
•
Other
•
University
•
Hard
study CS
Used 6+ times
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
<html>
<body>
<dl>
____
Mathematics
____
____
Calculus
____
</dl>
</body>
</html>
<dd>,</dd>,<dt>,</dt>
<dt>,</dt>,<dd>,</dd>
<li>,</li>,<dd>,</dd>
<dt>,</dt>,<li>,</li>
2.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
what will be the output of given source code
3.
MULTIPLE CHOICE QUESTION
3 mins • 1 pt
Which of the following HTML code will make an image clickable?
<a href="https://www.instagram.com/">insta Home Page</a>
<a href="https://www.instagram.com/">Home Page</a> <img src="https://www.instagram.com/insta logo" />
<img src="https://www.instagram.com/sanfoundry-logo"> <a href="https://www.instagram.com/">Home Page</a> </img>
<a href="https://www.insta.com/"><img src="https://www.sanfoundry.com/insta-logo" /></a>
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
In an HTML Form, which tag is used to create a dropdown menu
<input>
<textarea>
<select>
<text>
5.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
source code of the given image
<!DOCTYPE html> <html> <head> <title> Unordered List </title> </head> <body> <h2>Nested Unordered List</h2> <ol> <li>Progrmming Languages</li> <ol> <li>C</li> <li>C++</li> <li>Java</li> <li>Python</li> </ul> <li>DSA</li> <ol> <li>Array</li> <li>Linked List</li> <li>stack</li> <li>Queue</li> <li>Trees</li> <li>Graphs</li> </ul> <li>Web Technologies</li> <ul> <li>HTML</li> <li>JavaScript</li> <li>Bootstrap</li> <li>React Js</li> </ul> </ul> </body> </html>
<!DOCTYPE html> <html> <head> <title> Unordered List </title> </head> <body> <h2>Nested Unordered List</h2> <ul> <dl>Progrmming Languages</dl> <ul> <li>C</li> <li>C++</li> <li>Java</li> <li>Python</li> </ul> <li>DSA</li> <ul> <li>Array</li> <li>Linked List</li> <li>stack</li> <li>Queue</li> <li>Trees</li> <li>Graphs</li> </ul> <li>Web Technologies</li> <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> <li>Bootstrap</li> <li>React Js</li> </ul> </ul> </body> </html>
<!DOCTYPE html> <html> <head> <title> Unordered List </title> </head> <body> <h2>Nested Unordered List</h2> <ul> <li>Progrmming Languages</li> <ul> <li>C</li> <li>C++</li> <li>Java</li> <li>Python</li> </ul> <li>DSA</li> <ul> <li>Array</li> <li>Linked List</li> <li>stack</li> <li>Queue</li> <li>Trees</li> <li>Graphs</li> </ul> <li>Web Technologies</li> <ul> <li>HTML</li> <li>CSS</li> <li>JavaScript</li> <li>Bootstrap</li> <li>React Js</li> </ul> </ul> </body> </html>
none
6.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
which one is correct
<html><head><title>hi</title><body>
<table border="2" cellpadding="0" cellspacing="0">
<tr>
<th>Name</th>
<th>Subject</th>
<th>Marks</th>
</tr>
<tr>
<td rowspan = "2">Hillary</td>
<td>Advanced Web</td>
<td>75</td>
</tr>
<tr>
<td>Operating Syatem</td>
<td>60</td>
</tr>
<tr>
<td colspan = "2">Lary</td>
<td>Advanced Web</td>
<td>80</td>
</tr>
<tr>
<td>Operating Syatem</td>
<td>75</td>
</tr>
<tr>
<td rowspan="3" align="center">Total Average: 72.5</td>
</tr>
</table>
</body>
</head>
</html>
<html><head><title>hi</title><body><table>
<tr>
<th>Name</th>
<th>Subject</th>
<th>Marks</th>
</tr>
<tr> <td rowspan = "2">Hillary</td>
<td>Advanced Web</td>
<td>75</td> </tr>
<tr> <td>Operating Syatem</td>
<td>60</td> </tr>
<tr> <td rowspan = "2">Lary</td>
<td>Advanced Web</td>
<td>80</td>
</tr>
<tr> <td>Operating Syatem</td>
<td>75</td>
</tr>
<tr>
<td colspan="3">Total Average: 72.5</td>
</tr>
</table></body></head></html>
<html><head><title>hi</title><body>
<table border="2" cellpadding="0" cellspacing="0">
<tr>
<th>Name</th>
<th>Subject</th>
<th>Marks</th>
</tr>
<tr>
<td rowspan = "2">Hillary</td>
<td>Advanced Web</td>
<td>75</td>
</tr>
<tr>
<td>Operating Syatem</td>
<td>60</td>
</tr>
<tr>
<td rowspan = "2">Lary</td>
<td>Advanced Web</td>
<td>80</td>
</tr>
<tr>
<td>Operating Syatem</td>
<td>75</td>
</tr>
<tr>
<td colspan="3" align="center">Total Average: 72.5</td>
</tr>
</table>
</body>
</head>
</html>
7.
MULTIPLE CHOICE QUESTION
5 mins • 1 pt
<html><head><title>hi</title><body>
<table border="2" cellpadding="0" cellspacing="0">
<tr>
<th>Name</th>
<th>Subject</th>
<th>Marks</th>
</tr>
<tr>
<td rowspan = "2">bca</td>
<td>Webtech</td>
<td>95</td>
</tr>
<tr>
<td>python</td>
<td rowspan="2">90</td>
</tr>
<tr>
<td rowspan = "2">sec10</td>
<td>java</td>
</tr>
<tr>
<td>dbms</td>
<td>75</td>
</tr>
<tr><td></td>
<td colspan="2" align="center">Total Average: 72.5  </td>
</tr>
</table>
</body>
</head>
</html>
Create a free account and access millions of resources
Similar Resources on Wayground
15 questions
IMD318 - Basic HTML Structure

Quiz
•
University
20 questions
WEBTECH-1 QUIZZ 2

Quiz
•
University
20 questions
第十三章 表格与列表

Quiz
•
University
10 questions
Gold Batch -2 Quiz 1

Quiz
•
University
15 questions
Week 4 Review

Quiz
•
University
10 questions
Web тегтері

Quiz
•
University
15 questions
HTML TAGS

Quiz
•
University
17 questions
HTML, CSS, JAVASCRIPT PRACTICE TEST

Quiz
•
University
Popular Resources on Wayground
50 questions
Trivia 7/25

Quiz
•
12th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
11 questions
Negative Exponents

Quiz
•
7th - 8th Grade
12 questions
Exponent Expressions

Quiz
•
6th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
20 questions
One Step Equations All Operations

Quiz
•
6th - 7th Grade
18 questions
"A Quilt of a Country"

Quiz
•
9th Grade