webtech quizz-3

webtech quizz-3

University

15 Qs

quiz-placeholder

Similar activities

Информатика 10кл тегтер

Информатика 10кл тегтер

University

10 Qs

Kuis Seminar Ultah 12

Kuis Seminar Ultah 12

University

15 Qs

Dasar Manajemen dan Bisnis

Dasar Manajemen dan Bisnis

University - Professional Development

20 Qs

HTML Basics

HTML Basics

University

10 Qs

UAS ASKEB I (BATCH 1)

UAS ASKEB I (BATCH 1)

University

15 Qs

Matematyka

Matematyka

4th Grade - University

10 Qs

Day - 3 Workshop quiz

Day - 3 Workshop quiz

University

15 Qs

WEBTECH-1 QUIZZ 2

WEBTECH-1 QUIZZ 2

University

20 Qs

webtech quizz-3

webtech quizz-3

Assessment

Quiz

Other

University

Hard

Created by

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

Media Image

what will be the output of given source code

Media Image
Media Image
Media Image
Media Image

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>

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In an HTML Form, which tag is used to create a dropdown menu

  1. <input>

  1. <textarea> 

  1. <select>

  1. <text>

5.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Media Image

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

Media Image

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 &nbsp</td>

</tr>

</table>

</body>

</head>

</html>

Media Image
Media Image
Media Image
Media Image

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?