Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

 Dashboard / Primer 2.0 - App Dev / Stage 1 / Web Technologies / HTML

Quiz review

Started on Thursday, 30 May 2024, 4:55 PM


State Finished
Completed on Thursday, 30 May 2024, 5:05 PM
Time taken 10 mins 32 secs
Marks 5.00/5.00
Grade 100.00 out of 100.00
Feedback Congratulations!! You have passed by securing more than 80%

Questi If the phone number should accept only 10 digit numbers, which of the following options will suit?

on 1 Select one:
Correct <input type="text" min="0" max="9" />

Mark 1.00 <input type="number" pattern="[0-9]{10}"/>


out of 1.00
52942
<input type="number" min="0" max="9" />

<input type="text" pattern="[0-9]{10}"/> 

Your answer is correct.


The correct answer is: <input type="text" pattern="[0-9]{10}"/>

Questi In the web page, we have a field called phoneno and inside this textbox field, the text : "Only numbers are allowed" must appear. This should get disappeared
automatically once we type the phoneno into it. Which of the below options will suit the given scenario?
on 2
Correct Select one or more:
<input type="tel" placeholder="Only numbers are allowed"> 
Mark 1.00
52942
out of 1.00 <input type="text" value="Only numbers are allowed">

<input type="tel" value="Only numbers are allowed">

<input type="tel" default="Only numbers are allowed">

<input type="text" placeholder="Only numbers are allowed"> 

Your answer is correct.


The correct answers are: <input type="text" placeholder="Only numbers are allowed">, <input type="tel" placeholder="Only numbers are allowed">

52942
Questi Ram has designed a portal that fetches the citizens' feedback regarding the voting process in India. The portal allows the end user to choose either 'like' image or
'unlike' image, so that it gets redirected to a page : "thanks.html".
on 3
Correct Select one:
<form action="thanks.html">
Mark 1.00
out of 1.00 <input type="submit">
<img src="like.jpg"/>
<img src="unlike.jpg"/>
</input>
</form>

<form action="thanks.html">
<input type="submit" src="like.jpg"/>
<input type="submit" src="unlike.jpg"/>
</form>

<form action="thanks.html">
<img href="like.jpg" value="submit"/>
<img href="unlike.jpg" value="submit"/>
</form>

<form action="thanks.html">
52942 
<input type="image" src="like.jpg" alt="submit"/>
<input type="image" src="unlike.jpg" alt="submit"/>
</form>

Your answer is correct.


The correct answer is: <form action="thanks.html">
<input type="image" src="like.jpg" alt="submit"/>
<input type="image" src="unlike.jpg" alt="submit"/>
</form>

Questi 52942
Choose the relavant HTML input type attributes.

on 4
Marital Status radio 
Correct
Loan tenure range 
Mark 1.00
out of 1.00 PANNO text 

Email-id email 

Webaddress URL 

MobileNo tel 

Your answer is correct.


52942
The correct answer is: Marital Status → radio, Loan tenure → range, PANNO → text, Email-id → email, Webaddress → URL, MobileNo → tel
Questi Consider the below webpage:

on 5
Correct

Mark 1.00
out of 1.00

Which of the following is used to do this ?

Select one:
<input type="date" id="date" min="2017-01-26" max="2017-08-15">

<select type="date">
<option label="Republic Day">2017-01-26</option>
<option label="May Day">2017-05-01</option>
<option label="Independence Day">2017-08-15</option>
</select>

<input type="date" id="date" name="date" list="holidays">


<select id="holidays">
<option label="Republic
52942 Day">2017-01-26</option>
<option label="May Day">2017-05-01</option>
<option label="Independence Day">2017-08-15</option>
</select>

<input type="date" id="date" name="date" list="holidays"> 


<datalist id="holidays">
<option label="Republic Day">2017-01-26</option>
<option label="May Day">2017-05-01</option>
<option label="Independence Day">2017-08-15</option>
</datalist>

Your answer is correct. 52942

The correct answer is: <input type="date" id="date" name="date" list="holidays">


<datalist id="holidays">
<option label="Republic Day">2017-01-26</option>
<option label="May Day">2017-05-01</option>
<option label="Independence Day">2017-08-15</option>
</datalist>

◄ Forever Event Management Jump to... Library Books Form - HTML Debug ►

52942

You might also like