Pass4sure offers free demo for 98-375 exam. "HTML5 Application Development Fundamentals", also known as 98-375 exam, is a Microsoft Certification. This set of posts, Passing the Microsoft 98-375 exam, will help you answer those questions. The 98-375 Questions & Answers covers all the knowledge points of the real exam. 100% real Microsoft 98-375 exams and revised by experts!


♥♥ 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

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


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


Q3. Which two code fragments represent ways to use HTML5 to save values to session storage? (Choose two.) 

blob.png

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer: A,C 

Explanation: Example: sessionStorage.setItem("key", "value"); 

Example: 

if (sessionStorage.clickcount) 

sessionStorage.clickcount=Number(sessionStorage.clickcount)+1; 

else 

sessionStorage.clickcount=1; 

document.getElementById("result").innerHTML="You have clicked the button " + 

sessionStorage.clickcount + " time(s) in this session."; 


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


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


Q6. What does "V" stand for in the file type SVG? 

A. Video 

B. Vertical 

C. Vector 

D. Variable 

Answer:


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


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


Q9. DRAG DROP 

Match the HTML5 input attributes to the corresponding descriptions. (To answer, drag the appropriate attribute from the column on the left to its description on the right. Each attribute may be used once, more than once, or not at all. Each correct match is worth one point.) 

blob.png

Answer: 

blob.png


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