Want to know Exambible 98-375 Exam practice test features? Want to lear more about Microsoft HTML5 Application Development Fundamentals certification experience? Study Virtual Microsoft 98-375 answers to Renew 98-375 questions at Exambible. Gat a success with an absolute guarantee to pass Microsoft 98-375 (HTML5 Application Development Fundamentals) test on your first attempt.
♥♥ 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
Q31. 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
Q32. Web Workers define an API for:
A. Publishing frequently updated works for syndication.
B. Running scripts in the background,
C. Bi-directional, full-duplex communications over a single TCP socket.
D. Distributing load across multiple web servers.
Answer: A
Q33. Which three statements describe cookies? (Choose three.)
A. They can be created, read, and erased using the document.cookie property.
B. They are limited in size to 5 MB.
C. They are deleted automatically when the session ends.
D. They can be used only by pages on the domain where they were set.
E. They contain the data in the form of a name=value pair.
Answer: A,D,E
Explanation: Note: Cookies are small, usually randomly encoded, text files that help your browser navigate through a particular website. The cookie file is generated by the site you're browsing and is accepted and processed by your computer's browser software. The cookie file is stored in your browser's folder or subfolder.
Q34. 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
Q35. Which CSS3 code fragment styles an H2 element only if it is a direct child of a DIV element?

A. Option A
B. Option B
C. Option C
D. Option D
Answer: B
Q36. 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
Q37. You write the following code. (Line numbers are included for reference only.)

You need to make the text animate up the screen from a starting position of 400 pixels. Which CSS code fragment should you insert at line 13?

A. Option A
B. Option B
C. Option C
D. Option D
Answer: C
Q38. You write the following JavaScript code. (Line numbers are included for reference only.)

You need to write a function that will initialize and encapsulate the member variable full name.
Which are two possible code fragments you could insert at line 02 to achieve this goal? (Each correct answer presents a complete solution. Choose two.)

A. Option A
B. Option B
C. Option C
D. Option D
Answer: B,D
Explanation:
Note:
* In JavaScript this always refers to the “owner” of the function we're executing, or rather, to the object that a function is a method of.
* If you assign a value to variable that has not yet been declared, the variable will automatically be declared as a GLOBAL variable.
This statement:
carname="Volvo";
Will declare the variable carname as a global variable , even if it is executed inside a
function.
Q39. 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
Q40. 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