Top Microsoft 98-375 dumps Choices

Exam Code: 98-375 (Practice Exam Latest Test Questions VCE PDF)
Exam Name: HTML5 Application Development Fundamentals
Certification Provider: Microsoft
Free Today! Guaranteed Training- Pass 98-375 Exam.


♥♥ 2021 NEW RECOMMEND ♥♥

Free VCE & PDF File for Microsoft 98-375 Real Exam (Full Version!)

★ Pass on Your First TRY ★ 100% Money Back Guarantee ★ Realistic Practice Exam Questions

Free Instant Download NEW 98-375 Exam Dumps (PDF & VCE):
Available on: http://www.surepassexam.com/98-375-exam-dumps.html

Q11. 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 


Q12. Which CSS3 code fragment rounds the corners of a border? 

A. border-image: 50px; 

B. border-clip: 50px concave; 

C. border-radius: 50px; 

D. border-clip: 50px; 

Answer:


Q13. Which two are WebSocket events? (Choose two.) 

A. onconnect 

B. onmessage 

C. ondatareceived 

D. onopen 

Answer: B,D 

Explanation: Following are the events associated with WebSocket object. Assuming we created Socket object: 

Event, Event Handler, Description 

* open 

Socket.onopen 

This event occurs when socket connection is established. 

* message 

Socket.onmessage 

This event occurs when client receives data from server. 

error 

Socket.onerror 

This event occurs when there is any error in communication. 

* close 

Socket.onclose 

This event occurs when connection is closed. 


Q14. Which two code segments declare JavaScript functions? (Choose two.) 

A. varfunct= (a); 

B. function Foo(a){ 

… 

C. var a=new Foo(); 

D. Foo=function(a){ 

...} 

Answer: C,D 

Explanation: Example: 

function add(x, y) { 

return x + y; 

var t = add(1, 2); 

alert(t); //3 

Example: 

//x,y is the argument. 'returnx+y' is the function body, which is the last in the argument list. 

var add = new Function('x', 'y', 'return x+y'); 

var t = add(1, 2); 

alert(t); //3 

Incorrect: 

Not A: funct keyword not used in JavaScript 


Q15. 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:


Q16. 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. 


Q17. When you are testing a touch interface, which two gestures can you simulate by using a mouse? (Choose two.) 

A. tap 

B. pinch 

C. flick 

D. rotate 

Answer: A,D 


Q18. Which JavaScript method is used to draw a circle on a canvas? 

A. ellipse 

B. circle 

C. bezierCurveTo 

D. arc 

Answer:


Q19. Which item specifies resources for an offline HTML5 application? 

A. a CSS style sheet 

B. an HTML5 file 

C. a JavaScript file 

D. a cache manifest file 

Answer:


Q20. 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