webtech quizz-3

webtech quizz-3

University

15 Qs

quiz-placeholder

Similar activities

Nói không buồn ngủ với triết học

Nói không buồn ngủ với triết học

University

10 Qs

Line Balancing

Line Balancing

University

10 Qs

Harry Potter

Harry Potter

2nd Grade - Professional Development

20 Qs

Materi 3 Penyakit Degeneratif

Materi 3 Penyakit Degeneratif

12th Grade - Professional Development

15 Qs

SoftSkill v3.0 (BAFing Module)

SoftSkill v3.0 (BAFing Module)

KG - Professional Development

20 Qs

Unit 8: Maintain Business Resources

Unit 8: Maintain Business Resources

University

10 Qs

Pre Test :: Iman dan Taqwa (Kuliah Agama Islam-5)

Pre Test :: Iman dan Taqwa (Kuliah Agama Islam-5)

University

10 Qs

Logic Quiz SGTC 2022

Logic Quiz SGTC 2022

1st Grade - Professional Development

10 Qs

webtech quizz-3

webtech quizz-3

Assessment

Quiz

Other

University

Practice Problem

Hard

Created by

study CS

Used 6+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?