READ Free Dumps For Microsoft- 70-480
Question ID 14988 | You are developing an HTML5 web application that provides a discussion forum for users. |
Option A | Remove all nonalphanumeric characters before submitting data. |
Option B | Use the email tag in forms where the email address is entered. |
Option C | Display all email addresses inside of an HTML5 ADDRESS element. |
Option D | Use jQuery validation with a regular expression to ensure that email addresses are valid. |
Option E | Ensure that all form data is encrypted when it is submitted. |
Correct Answer | B,D |
Question ID 14989 | You are developing an HTML5 web application that will display encyclopedia entries. |
Option A |
The <figure> element The <figure> element is intended to be used in conjunction with the <figcaption> element to mark up diagrams, illustrations, photos, and code examples (among other things). Example: <figure> <img src="/macaque.jpg" alt="Macaque in the trees"> <figcaption>A cheeky macaque, Lower Kintaganban River, Borneo. Original by <a href="http://www.flickr.com/photos/rclark/">Richard Clark</a></figcaption> </figure> |
Correct Answer | A |