Master the 98-375 HTML5 Application Development Fundamentals content and be ready for exam day success quickly with this Pass4sure 98-375 vce. We guarantee it!We make it a reality and give you real 98-375 questions in our Microsoft 98-375 braindumps.Latest 100% VALID Microsoft 98-375 Exam Questions Dumps at below page. You can use our Microsoft 98-375 braindumps and pass your exam.
Q18. 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
Q19. Which HTML5 tag is used to mark text that has been added to the original document?
A. <q>
B. <pre>
C. <ins>
D. <i>
Answer: C
Q20. You are creating a page by using HTML5. You add script tags to the page.
You need to use JavaScript to access an element by id and add a class to the element.
Which property or attribute should you use?
A. the tagName property
B. the className property
C. the style property
D. the class attribute
Answer: B
Q21. Which code fragment sets up a timer that calls a function named "adjust" every second?
A. setTimeout(adjust, 1000);
B. setInterval(adjust, 1000);
C. setInterval(adjust, 1);
D. setTimeout(adjust, 1);
Answer: B
Q22. 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.
Q23. DRAG DROP
Match the HTML5 input attributes to the corresponding descriptions. (To answer, drag the appropriate attribute from the column on the left to its description on the right. Each attribute may be used once, more than once, or not at all. Each correct match is worth one point.)

Answer:

Q24. Which CSS property defines which sides of an element where other floating elements are not allowed?
A. float
B. position
C. display
D. clear
Answer: D
Q25. What is the default value of the CSS position property?
A. fixed
B. absolute
C. static
D. relative
Answer: C
Q26. You create an instance named "location" of a geolocation object.
Which code fragment will initiate periodic updates of a device's geographic location?
A. location = navigator.geolocation;
B. location.watchPosition(showLocation) ;
C. location.getCurrentPosition(showLocation);
D. location.clearNatch(watchid);
Answer: B
Q27. Which HTML5 tag is used to display text with a fixed-width font and preserves both spaces and line breaks?
A. <area>
B. <hr>
C. <pre>
D. <strong>
Answer: C
Q28. 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!
Q29. 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
Q30. 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.
Q31. Which two HTML properties can JavaScript access to change the text value of an HTML element? (Choose two.)
A. innerHTML
B. nodeType
C. title
D. nodeValue
Answer: A,C
Explanation: The innerHTML property sets or returns the inner HTML of an element.
Example:
document.getElementById('myAnchor').innerHTML="Contoso";
The title property sets or returns the element's advisory title.
Example:
var x=document.getElementsByTagName('body')[0];document.write("Body title: " + x.title);
Q32. Which CSS3 code fragment rounds the corners of a border?
A. border-image: 50px;
B. border-clip: 50px concave;
C. border-radius: 50px;
D. border-clip: 50px;
Answer: C
Q33. Your HTML5 code includes this code segment:

Which JavaScript code fragment will determine that a visitor has selected the "Chocolate" radio button?

A. Option A
B. Option B
C. Option C
D. Option D
Answer: A
Q34. 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