aiotestking uk

98-375 Exam Questions - Online Test


98-375 Premium VCE File

Learn More 100% Pass Guarantee - Dumps Verified - Instant Download
150 Lectures, 20 Hours

Q1. Which attribute prefills a default value for an input element in HTML5? 

A. name 

B. placeholder 

C. autocomplete 

D. required 

Answer:

Q2. In HTML5, which two objects in the Web Storage specification are used to store data on the client? (Choose two.) 

A. websocket 

B. navigator 

C. cache 

D. sessionStorage 

E. localStorage 

Answer: D,E 

Explanation: There are two new objects for storing data on the client: 

localStorage - stores data with no expiration date sessionStorage - stores data for one session 

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

A. <ul> 

B. <select> 

C. <datalist> 

D. <dd> 

Answer:

Q4. 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.) 

blob.png

Answer:  

blob.png

Q5. Your code includes the following fragment: 

<input type="text" name="text1" id="myText" /> 

You need to add code that will retrieve the contents of the INPUT element. 

Which JavaScript code fragment will accomplish this? 

A. vartxtContents =document.getElementById('text1').value; 

B. vartxtContents = document.getEIementyById('myText').value; 

C. vartxtContents =document.getElementById('text1'); 

D. vartxtContents = document.getElementById('myText'); 

Answer:

Q6. 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? 

blob.png

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

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

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

Q9. Which three technologies does HTML5 encompass? (Choose three.) 

A. CSS 

B. ASP.NET 

C. C# 

D. JavaScript 

E. HTML 

Answer: A,D,E 

Explanation: * HTML5 has full CSS3 Support. 

* While developing HTML5 some rules were established including: 

New features should be based on HTML, CSS, DOM, and JavaScript 

Q10. An HTML5 application can run without an Internet connection if: 

A. the application is converted to an executable. 

B. the .NET Framework is installed on the client computer. 

C. the application specifies the use of a client-side SQL database. 

D. the application specifies the use of an ApplicationCache interface. 

Answer: