getcertified4sure.com

how to use exam 98-375 html5 app development fundamentals




It is impossible to pass Microsoft 98-375 exam without any help in the short term. Come to Pass4sure soon and find the most advanced, correct and guaranteed Microsoft 98-375 practice questions. You will get a surprising result by our Far out HTML5 Application Development Fundamentals practice guides.

2021 Oct html5 98-375:

Q31. You create an instance named "ac" of an accelerometer object. Which code fragment will retrieve a single update? 

blob.png

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q32. Which two CSS properties can be used to position multiple HTML elements next to one another? (Choose two.) 

A. display 

B. position 

C. overflow 

D. float 

Answer: B,D 

Explanation: CSS position Property 

The position property specifies the type of positioning method used for an element (static, 

relative, absolute or fixed). 

CSS float Property 

The float property specifies whether or not a box (an element) should float. 


Q33. You create an instance named "location" of a geolocation object. 

Which code fragment will initiate periodic updates of a device's geographic location? 

A. location = navigator.geolocation; 

B. location.watchPosition(showLocation) ; 

C. location.getCurrentPosition(showLocation); 

D. location.clearNatch(watchid); 

Answer:


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


Q35. Which term describes the canvas API? 

A. xml-based 

B. vector-based 

C. retained-mode 

D. immediate-mode 

Answer:


Improved microsoft mta-98-375-html5 application development fundamentals:

Q36. The variable named "ctx" is the context of an HTML5 canvas object. What does the following code fragment draw? ctx.arc(x, y, r, 0, Math.PI, true); 

A. a circle at the given point 

B. a square at the given point 

C. a semi-circle at the given point 

D. a line from one point to another 

Answer:


Q37. Your HTML5 code includes this code segment: 

blob.png

Which JavaScript code fragment will determine that a visitor has selected the "Chocolate" radio button? 

blob.png

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q38. Which positioning scheme places an object in normal document flow? 

A. absolute 

B. relative 

C. fixed 

D. float 

Answer:


Q39. You write the following code to create a page. (Line numbers are included for reference only.) 

blob.png

You need to apply the SVG blur filter to the text tag on the page. Which HTML/CSS code should you insert at line 02? 

blob.png

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q40. Which element should you use to rotate an SVG square? 

A. path 

B. ANIMATETRANSFORM 

C. ANIMATEMOTION 

D. AREA SHAPE 

Answer: