Exam Code: 98-375 (Practice Exam Latest Test Questions VCE PDF)
Exam Name: HTML5 Application Development Fundamentals
Certification Provider: Microsoft
Free Today! Guaranteed Training- Pass 98-375 Exam.
♥♥ 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
Q21. Which tag is used to create a drop-down list in HTML5?
A. <ul>
B. <select>
C. <datalist>
D. <dd>
Answer: B
Q22. You create an interface for a touch-enabled application.
During testing you discover that some touches trigger multiple input areas.
Which situation will cause this problem?
A. The touch screen is not calibrated.
B. The input areas are too close together.
C. The defined input areas are too small.
D. The input areas are semi-transparent.
Answer: B
Q23. 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
Q24. Which code fragment will display the Play and Pause controls in the audio interface?
A. Option A
B. Option B
C. Option C
D. Option D
Answer: A
Q25. What is the default value of the CSS position property?
A. fixed
B. absolute
C. static
D. relative
Answer: C
Q26. DRAG DROP
Match the CSS position property values to the corresponding descriptions. (To answer, drag each value from the column on the left to its description on the right. Each value may be used once, more than once, or not at all. Each correct match is worth one point.)
Answer:
Q27. You create an interface for a touch-enabled application.
You discover that some of the input buttons do not trigger when you tap the screen.
You need to identify the cause of the problem.
What are two possible causes? (Choose two.)
A. The input areas overlap with other input areas.
B. The touch screen is not initialized.
C. The input areas are using event handlers to detect input.
D. The defined input areas are not large enough.
Answer: A,D
Q28. Which two code fragments represent ways to use HTML5 to save values to session storage? (Choose two.)
A. Option A
B. Option B
C. Option C
D. Option D
Answer: A,C
Explanation: Example: sessionStorage.setItem("key", "value");
Example:
if (sessionStorage.clickcount)
{
sessionStorage.clickcount=Number(sessionStorage.clickcount)+1;
}
else
{
sessionStorage.clickcount=1;
}
document.getElementById("result").innerHTML="You have clicked the button " +
sessionStorage.clickcount + " time(s) in this session.";
Q29. 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
Q30. 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