[Free] 98-375 Microsoft exam engine 41-50 (Sep 2021)

It is impossible to pass Microsoft 98-375 exam without any help in the short term. Come to Testking soon and find the most advanced, correct and guaranteed Microsoft 98-375 practice questions. You will get a surprising result by our Renovate HTML5 Application Development Fundamentals practice guides.


♥♥ 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

Q41. Which two semantic tags are used to define layouts in HTML5? (Choose two.) 

A. <footer> 

B. <head> 

C. <progress: 

D. <section> 

Answer: A,D 

Explanation: New Semantic Elements in HTML5 Many of existing web sites today contains HTML code like this: <div id="nav">, <div class="header">, or <div id="footer">, to indicate navigation links, header, and footer. 

HTML5 offers new semantic elements to clearly define different parts of a web page: 

<header> 

<nav> 

<section> 

<article> 

<aside> 

<figcaption> 

<figure> 

<footer> 

Note: A semantic element clearly describes its meaning to both the browser and the developer. 

Examples of non-semantic elements: <div> and <span> - Tells nothing about its content. 

Examples of semantic elements: <form>, <table>, and <img> - Clearly defines its content. 


Q42. Which code shows the correct way to nest tags in HTML5? 

blob.png

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q43. 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); 


Q44. What value does the following JavaScript code fragment store into the variable num? 

varnum = localStorage.length; 

A. maximum length of a character string 

B. potential capacity of local storage 

C. number of bytes available in local storage 

D. number of key-value pairs in local storage 

Answer:


Q45. Which element should you use to rotate an SVG square? 

A. path 

B. ANIMATETRANSFORM 

C. ANIMATEMOTION 

D. AREA SHAPE 

Answer:


Q46. When you are using the GeoLocation API, which two arguments does the getCurrentPosition function utilize? (Choose two.) 

A. success callback 

B. MAC address 

C. browser type 

D. ip address 

E. failure callback 

Answer: D,E 

Explanation: The getCurrentPosition() method returns an object if it is successful. The latitude, longitude and accuracy properties are always returned.The second parameter of the getCurrentPosition() method is used to handle errors. It specifies a function to run if it fails to get the user's location. 

Note: 

* The HTML5 Geolocation API is used to get the geographical position of a user. 

* The getCurrentPosition() method returns an object if it is successful. The latitude, longitude and accuracy properties are always returned. 


Q47. 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:


Q48. 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:


Q49. In HTML5, the autofocus attribute: 

A. defines the cursor location when a form is first accessed. 

B. controls the movement between fields in a form. 

C. adds a default value to the field in a form. 

D. enables one field and disables all others. 

Answer:


Q50. Which three are valid JavaScript variables? (Choose three.) 

A. xyz1 

B. .Int 

C. int1 

D. _int 

E. 1xyz 

Answer: A,C,D 

Explanation: Variable names must begin with a letter or special variable with either $ or _ Variable names are case sensitive (y and Y are different variables)