Our pass rate is high to 98.9% and the similarity percentage between our 98-375 study guide and real exam is 90% based on our seven-year educating experience. Do you want achievements in the Microsoft 98-375 exam in just one try? I am currently studying for the Microsoft 98-375 exam. Latest Microsoft 98-375 Test exam practice questions and answers, Try Microsoft 98-375 Brain Dumps First.
♥♥ 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
Q11. 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
Q12. Which two HTML5 tags format text content only? (Choose two.)
A. <map>
B. <strong>
C. <canvas>
D. <em>
Answer: B,D
Explanation:
Example:
I can <em>not</em>emphasise this enough!
Q13. Which three event attributes are used with the CAPTION element in HTML5? (Choose three.)
A. onmouseover
B. ondblclick
C. onkeydown
D. onconnect
E. onabort
Answer: A,B,C
Explanation: A: onmouseover
The cursor moved over the object (i.e. user hovers the mouse over the object).
B: ondblclick
Invoked when the user clicked twice on the object.
C: onkeydown
Invoked when a key was pressed over an element.
Q14. 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
Q15. 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
Q16. Which three events are valid for the HTML CANVAS element? (Choose three.)
A. scroll
B. mouseup
C. blur
D. datareceived
E. hover
Answer: A,B,E
Explanation: B: You can also detect a mouse click on your canvas. Again, this is done with addEventListener. There are quite a few mouse events you can detect: mousedown, mouseup, mousemove, mouseout and mouseover.
E: MouseHover Event Mouse Hover Event is a combination of two mouse events MouseOver and MouseOut so it makes easier for the developer to handle the hover event easily.
Note:
* If you want to target a touch-enabled device like an iPad, iPhone, Android tablet or phone, etc, then you need the touch events. These events are touchstart, touchend, touchcancel, touchleave, touchmove.
Q17. Which three generic font family names are valid values of the font-family property in CSS? (Choose three.)
A. cursive
B. system
C. serif
D. fixed
E. fantasy
Answer: A,C,E
Explanation: There are five generic fonts: serif, sans-serif, monospace, cursive and
fantasy.
Note:
There are two types of font family names:
family-name - The name of a font-family, like "times", "courier", "arial", etc.
generic-family - The name of a generic-family, like "serif", "sans-serif", "cursive", "fantasy",
"monospace".
Q18. Which term describes the canvas API?
A. xml-based
B. vector-based
C. retained-mode
D. immediate-mode
Answer: D
Q19. The data in a specific HTML5 local storage database can be accessed from:
A. Different browsers on the same device.
B. Different browsers on different devices.
C. The same browser on different devices.
D. The same browser on the same device.
Answer: A
Q20. Which three code fragments define an HTML input control? (Choose three.)

A. Option A
B. Option B
C. Option C
D. Option D
E. Option E
Answer: C,D,E
Explanation: HTML input types include: button checkbox color date datetime datetime-local email file hidden
image
month
number
password
radio
range
reset
search
submit
tel
text
time
url
week
Note:
HTML Forms - The Input Element
The most important form element is the <input> element.
The <input> element is used to select user information.
An <input> element can vary in many ways, depending on the type attribute. An <input>
element can be of type text field, checkbox, password, radio button, submit button, and
more.