Cause all that matters here is passing the Microsoft 98-375 exam. Cause all that you need is a high score of 98-375 HTML5 Application Development Fundamentals exam. The only one thing you need to do is downloading Exambible 98-375 exam study guides now. We will not let you down with our money-back guarantee.

Q1. DRAG DROP 

Match the CSS terms to the corresponding CSS code examples. (To answer, drag the appropriate CSS term from the column on the left to its CSS code example on the right. Each CSS term may be used once, more than once, or not at all. Each correct match is worth one point.) 

blob.png

Answer: 

blob.png


Q2. Which three statements describe cookies? (Choose three.) 

A. They can be created, read, and erased using the document.cookie property. 

B. They are limited in size to 5 MB. 

C. They are deleted automatically when the session ends. 

D. They can be used only by pages on the domain where they were set. 

E. They contain the data in the form of a name=value pair. 

Answer: A,D,E 

Explanation: Note: Cookies are small, usually randomly encoded, text files that help your browser navigate through a particular website. The cookie file is generated by the site you're browsing and is accepted and processed by your computer's browser software. The cookie file is stored in your browser's folder or subfolder. 


Q3. Which CSS3 code fragment styles an H2 element only if it is a direct child of a DIV element? 

blob.png

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q4. Which CSS3 code fragment will style only the external links in an HTML document? 

blob.png

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q5. Which layout can you create by using a single CSS3 region? 

A. a table layout 

B. a snaked-column layout 

C. a multiple column liquid layout 

D. a multiple column fixed layout 

Answer:


Q6. What does the following HTML5 code fragment do? 

blob.png

A. It plays the myVacation.avi video if the browser supports it; otherwise, plays the myVacation.ogg video if the browser supports it. 

B. It plays two videos: first myVacation.avi, and then myVacation.ogg. 

C. It plays both videos simultaneously, myVacation.avi and myVacation.ogg. 

D. It prompts the user to choose which format of the myVacation video it should play, .avi or .ogg. 

Answer: D


Q7. Which code fragment will display an image file while the video is downloading? 

blob.png

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q8. In HTML5, which two objects in the Web Storage specification are used to store data on the client? (Choose two.) 

A. websocket 

B. navigator 

C. cache 

D. sessionStorage 

E. localStorage 

Answer: D,E 

Explanation: There are two new objects for storing data on the client: 

localStorage - stores data with no expiration date sessionStorage - stores data for one session 


Q9. Which two tags are used with the HTML5 TABLE element? (Choose two.) 

A. <body> 

B. <tfoot> 

C. <td> 

D. <head> 

Answer: B,C 

Explanation: An HTML table consists of the <table> element and one or more <tr>, <th>, and <td> elements. 

The <tr> element defines a table row, the <th> element defines a table header, and the <td> element defines a table cell. 

A more complex HTML table may also include <caption>, <col>, <colgroup>, <thead>, <tfoot>, and <tbody> elements. 


Q10. In HTML5, the autofocus attribute: 

A. defines the cursor location when a form is first accessed. 

B. controls the movement between fields in a form. 

C. adds a default value to the field in a form. 

D. enables one field and disables all others. 

Answer:


Q11. DRAG DROP 

Match the CSS position property values to the corresponding descriptions. (To answer, drag each value from the column on the left to its description on the right. Each value may be used once, more than once, or not at all. Each correct match is worth one point.) 

blob.png

Answer: 

blob.png


Q12. Which three components define the URL used for localStorage data in HTML5? (Choose three.) 

A. scheme 

B. user credentials 

C. hostname 

D. unique port 

E. query 

Answer: A,C,D 

Explanation: localStorage is also the same as globalStorage[location.hostname], with the exception of being scoped to an HTML5 origin (scheme + hostname + non-standard port) and localStorage being an instance of Storage 

* HTML5 local storage saves data in string form as key-value pairs. If the data you wish to save is not string data, you are responsible for conversion to and from string when using LocalStorage. 


Q13. You add a div object to a page. 

Which CSS3 code fragment will add a scrollbar only if the content exceeds the width or height of the object? 

blob.png

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q14. Which tag is used to create a drop-down list in HTML5? 

A. <ul> 

B. <select> 

C. <datalist> 

D. <dd> 

Answer:


Q15. Which JavaScript method allows you to register multiple handlers for a single touch event? 

A. dispatchEvent 

B. initUIEvent 

C. addEventListener 

D. initEvent 

Answer:


Q16. An HTML5 application can be used without going through a manufacturer's approval process if: 

A. the browser on the device supports HTML5. 

B. the manufacturer has unlocked the device's SIM card. 

C. the application has been compiled. 

D. the developer has the correct application ID. 

Answer:


Q17. When you are working with the path API, what is the purpose of the clip method? 

A. pastes a shape object in from the system clipboard 

B. constrains the rendered output of the shape object 

C. copies the shape object to the system clipboard 

D. stores the shape object for later reference in script 

Answer: