exam questions

Exam 70-480 All Questions

View all questions & answers for the 70-480 exam

Exam 70-480 topic 3 question 16 discussion

Actual exam question from Microsoft's 70-480
Question #: 16
Topic #: 3
[All 70-480 Questions]

You develop an HTML5 web application. The web application contains a form that allows users to enter only their month of birth.
The value that the users enter must be numbers between 1 and 12, inclusive.
You need to implement the form element for the month of birth.
Which element should you use?

  • A. <input type="time" options="month" />
  • B. <input type="tel" min="1" max="12" />
  • C. <input type="range" min="1" max="12" />
  • D. <input type="month" itemscope="numeric" />
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️
Example:
</head>
<body>
<input type="range" name="rangeInput" min="0" max="100" onchange="updateTextInput(this.value);"/>
<input type="text" id="textInput" value=""/>
</body>
</html>

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
nelaed
4 years, 11 months ago
Why like this? Every option here is reallky odd to be used as a month input.
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...