
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
Sifat-Sifat Bahan Makanan

Quiz
•
University
10 questions
Evaluación de Distribución de BT y MT

Quiz
•
University
10 questions
Creating Web Pages

Quiz
•
University
15 questions
Deutsch quiz

Quiz
•
University - Professi...
10 questions
Quiz Resusitasi Cairan

Quiz
•
University
15 questions
Instrumen

Quiz
•
University
11 questions
8° Ano - Super Desafio

Quiz
•
8th Grade - University
13 questions
OF - ECV

Quiz
•
University
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
Discover more resources for Other
20 questions
Definite and Indefinite Articles in Spanish (Avancemos)

Quiz
•
8th Grade - University
7 questions
Force and Motion

Interactive video
•
4th Grade - University
36 questions
Unit 5 Key Terms

Quiz
•
11th Grade - University
7 questions
Figurative Language: Idioms, Similes, and Metaphors

Interactive video
•
4th Grade - University
15 questions
Properties of Equality

Quiz
•
8th Grade - University
38 questions
WH - Unit 3 Exam Review*

Quiz
•
10th Grade - University
21 questions
Advise vs. Advice

Quiz
•
6th Grade - University
12 questions
Reading a ruler!

Quiz
•
9th Grade - University