Your success in Microsoft 98-375 is our sole target and we develop all our 98-375 braindumps in a way that facilitates the attainment of this target. Not only is our 98-375 study material the best you can find, it is also the most detailed and the most updated. 98-375 Practice Exams for Microsoft MTA 98-375 are written to the highest standards of technical accuracy.
Q35. Which three properties can be used with the TouchEvent object in the Safari touch API? (Choose three.)
A. offsetTop
B. clientHeight
C. scale
D. touches
E. rotation
Answer: C,D,E
Q36. DRAG DROP
Match the JavaScript objects to the corresponding characteristics or methods. (To answer, drag the appropriate JavaScript object from the column on the left to its characteristic or method on the right. Each JavaScript object may be used once, more than once, or not at all. Each correct match is worth one point.)

Answer:

Q37. Which HTML5 tag defines superscript text?
A. < small >
B. <script>
C. <sup>
D. <sub>
Answer: C
Q38. Which term describes the canvas API?
A. xml-based
B. vector-based
C. retained-mode
D. immediate-mode
Answer: D
Q39. Which attribute prefills a default value for an input element in HTML5?
A. name
B. placeholder
C. autocomplete
D. required
Answer: B
Q40. 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
Q41. 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
Q42. Which element should you use to rotate an SVG square?
A. path
B. ANIMATETRANSFORM
C. ANIMATEMOTION
D. AREA SHAPE
Answer: B
Q43. You need to use JavaScript to access the "section1" element in the following code fragment:
<div id='section1'>
Which method should you use?
A. getElementsByTagName
B. getElementById
C. getElementsByName
D. getElementsByClassName
Answer: B
Q44. What does "V" stand for in the file type SVG?
A. Video
B. Vertical
C. Vector
D. Variable
Answer: C
Q45. An HTML5 application can run without an Internet connection if:
A. the application is converted to an executable.
B. the .NET Framework is installed on the client computer.
C. the application specifies the use of a client-side SQL database.
D. the application specifies the use of an ApplicationCache interface.
Answer: D
Q46. Which two events are supported on touch devices? (Choose two.)
A. click
B. touchstart
C. selection
D. drag
Answer: A,B
Explanation: when the user touches the screen both touch and click events will occur.
The touchstart event
A user agent must dispatch this event type to indicate when the user places a touch point
on the touch surface.
Note:
The main touch events are:
touchstarttriggered when a touch is detected
touchmovetriggered when a touch movement is detected
touchendtriggered when a touch is removed e.g. the user’s finger is removed from the
touchscreen
touchcanceltriggered when a touch is interrupted, e.g. if touch moves outside of the touch-
capable area
Q47. When applied to an image, the CSS float:right property:
A. positionsthe image to the left and displays all of the text to the right of the image.
B. positionsthe image to the right of the region and wraps text around the top, left, and bottom.
C. positionsthe image to the left of the region and wraps text around the top, right, and bottom.
D. positionsthe image to the right and wraps text to the top and bottom.
Answer: B
Q48. 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
Q49. Which CSS position value is used to position an element relative to the browser window?
A. position: relative;
B. position: absolute;
C. position: static;
D. position: fixed;
Answer: D
Q50. Which three technologies does HTML5 encompass? (Choose three.)
A. CSS
B. ASP.NET
C. C#
D. JavaScript
E. HTML
Answer: A,D,E
Explanation: * HTML5 has full CSS3 Support.
* While developing HTML5 some rules were established including:
New features should be based on HTML, CSS, DOM, and JavaScript
Q51. Which two touch gestures require a multi-touch device? (Choose two.)
A. hold
B. tap
C. pinch
D. spread
Answer: B,C