Actualtests 98-375 Questions are updated and all 98-375 answers are verified by experts. Once you have completely prepared with our 98-375 exam prep kits you will be ready for the real 98-375 exam without a problem. We have Rebirth Microsoft 98-375 dumps study guide. PASSED 98-375 First attempt! Here What I Did.
Q21. 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: B
Q22. Which positioning scheme places an object in normal document flow?
A. absolute
B. relative
C. fixed
D. float
Answer: B
Q23. Which code fragment prepares the HTML5 application to be used offline?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: B
Q24. What does the following HTML5 code fragment do?
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
Q25. Which HTML5 tag defines superscript text?
A. < small >
B. <script>
C. <sup>
D. <sub>
Answer: C
Q26. You need to ensure the scope of a variable named j is limited to the block of a single function named foo(). Which JavaScript code fragment will accomplish this?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: A
Q27. On a Windows touch device, which gesture serves the same purpose as a right-click of the mouse?
A. swipe
B. pinch
C. tap
D. hold
Answer: D
Q28. 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
Q29. In CSS, the flow-into property deposits:
A. the flow into the content.
B. the regions into a flow.
C. the flow into the regions.
D. content into the flow.
Answer: D
Q30. 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