getcertified4sure.com

Resources to mta exam 98-375 study guide




We are generally proud of each of our high-quality and fantastic value Microsoft Microsoft practice components. Because we now have got high passing rate because we began. Most of each of our customers get got through the Microsoft 98-375 genuine test and made remarkable achievements. Therefore we offer that you can also create wonderful success providing you take full advantage of Ucertify Microsoft certification simulated tests.

2021 Sep exam 98-375 pdf:

Q11. Which code fragment prepares the HTML5 application to be used offline? 

blob.png

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer: B 


Q12. 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". 


Q13. DRAG DROP 

Match the HTML5 elements to the corresponding functions. (To answer, drag the appropriate HTML5 element from the column on the left to its function on the right. Each HTML5 element may be used once, more than once, or not at all. Each correct match is worth one point.) 

blob.png

Answer: 

blob.png


Q14. Which three components define the URL used for localStorage data in HTML5? (Choose three.) 

A. scheme 

B. user credentials 

C. hostname 

D. unique port 

E. query 

Answer: A,C,D 

Explanation: localStorage is also the same as globalStorage[location.hostname], with the exception of being scoped to an HTML5 origin (scheme + hostname + non-standard port) and localStorage being an instance of Storage 

* HTML5 local storage saves data in string form as key-value pairs. If the data you wish to save is not string data, you are responsible for conversion to and from string when using LocalStorage. 


Q15. What does the following HTML5 code fragment do? 

blob.png

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


98-375 free practice test

Rebirth exam 98-375 html5 application development fundamentals:

Q16. 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 


Q17. What does "V" stand for in the file type SVG? 

A. Video 

B. Vertical 

C. Vector 

D. Variable 

Answer: C 


Q18. You add a div object to a page. 

Which CSS3 code fragment will add a scrollbar only if the content exceeds the width or height of the object? 

blob.png

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer: A 


Q19. Which tag is used to create a drop-down list in HTML5? 

A. <ul> 

B. <select> 

C. <datalist> 

D. <dd> 

Answer: B 


Q20. Which two outcomes will this code fragment accomplish? (Each correct answer presents a complete solution. Choose two.) 

blob.png

A. On pre-HTML5 browsers, the happy.wav file will not play, and instead Hello World will be displayed. 

B. On an HTML5 browser that supports .wav files, the happy.wav file will be played and Hello World will be hidden. 

C. On an HTML5 browser that supports .wav files, the happy.wav file will be played and Hello World will be displayed. 

D. on pre-HTMLS browsers, the happy.wav file will play and Hello World will be hidden. 

Answer: A,B 

Explanation: Audio on the Web 

Until now, there has not been a standard for playing audio files on a web page. 

Today, most audio files are played through a plug-in (like flash). However, different 

browsers may have different plug-ins. 

HTML5 defines a new element which specifies a standard way to embed an audio file on a 

web page: the <audio> element. 

Browser Support 

Internet Explorer 9+, Firefox, Opera, Chrome, and Safari support the <audio> element. 

Example: 

<audio controls> 

<source src="horse.ogg" type="audio/ogg"> 

<source src="horse.mp3" type="audio/mpeg"> 

Your browser does not support the audio element. 

</audio>