Verified Multiple Choice and Conceptual Actual
100% Correct Detailed Answers
Guaranteed Pass!!Current Update!!
1. Which pattern ensures the user enters a three digit country code? -
ANSWER <input type="text" pattern="[A-Za-z]{3}">
2. Which pattern ensures the user enters a date formatted as 1/1/2021? -
ANSWER <input type="text" pattern="\d{1,2}/\d{1,2}/\d{4}">
3. Which pattern ensures the user enters a valid email address? - ANSWER
<input type="email" pattern="^.+@.+$">
4. Which pattern ensures the user enters latitude/longitude? - ANSWER
<input type="text" pattern="-?\d{1,3}\.\d+">
5. Which pattern ensures the user enters a price? - ANSWER <input
type="text" pattern="\d+(\.\d{2})?">
6. Which pattern ensures the user enters a URL beginning with https? -
ANSWER <input type="url" pattern="https?://.+">
, 7. Which input type displays as round buttons in a group of mutually exclusive
pre-determined choices? - ANSWER <input type="radio">
8. Which HTML element submits a user's completed form data to the server
for processing? - ANSWER <button type="submit">
9. Which HTML element resets the form data to its initial value? - ANSWER
<button type="reset">
10.Which HTML element creates a clickable button that does not directly affect
form data and allows text and images to be placed within its tags? -
ANSWER <button type="button">
11.Which input type displays as square buttons in a group of pre-determined
choices from which the user can select more than one choice? - ANSWER
<input type="checkbox">
12.Which element creates a rectangular field that can expand upon user
interaction and allow users to select one or more pre-determined choices? -
ANSWER <select>
13.What occurs when users must submit and resubmit a form until it validates?
- ANSWER pogo-sticking
14.Which input type displays as rectangle field into which users can type
alphanumeric characters of their choice? - ANSWER <input type="text">