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.
Q31. You create an instance named "ac" of an accelerometer object. Which code fragment will retrieve a single update?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: C
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: B
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: D
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: C
Q37. Your HTML5 code includes this code segment:
Which JavaScript code fragment will determine that a visitor has selected the "Chocolate" radio button?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: A
Q38. Which positioning scheme places an object in normal document flow?
A. absolute
B. relative
C. fixed
D. float
Answer: B
Q39. You write the following code to create a page. (Line numbers are included for reference only.)
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?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: B
Q40. Which element should you use to rotate an SVG square?
A. path
B. ANIMATETRANSFORM
C. ANIMATEMOTION
D. AREA SHAPE
Answer: B