[2016-New] Microsoft Exam 70-480 Practice Test For Passing The 70-480 Certification Exam (21-40)

Are you looking for a Microsoft 70-480 exam questions? Are you looking for Microsoft 70-480 exam sample questions to identify gaps in your knowledge that may hurt you on the exam? GreatExam is your best choice! We are committed on providing you with the latest and most accurate 70-480 exam preparation material.

QUESTION 21

Hotspot Question
You are developing an HTML5 application for a company.
You apply the following style to a DIV element on a page.

211
You need to submit a draft illustration of the results of this code.
Which illustration should you submit? (To answer, select the appropriate illustration in the answer area.)
212
Answer:
213

QUESTION 22
Drag and Drop Question
You are developing a web page by using HTML5 and CSS3.
Hyperlinks on the page must be rendered with a style that reflects the last user action performed.
You need to style the four anchor elements in the document.
In what order should you specify the four anchor selectors? (To answer, move the appropriate anchor selectors from the list of CSS codes to the answer area and arrange them in the correct order.)
221
Answer:
222

QUESTION 23
You would like to create a web application by using HTML5, JavaScript, and CSS3.
Which of the following Visual Studio 2012 editions can you use? (Choose all that apply.)

A.    Visual Studio Professional 2012
B.    Visual Studio Premium 2012
C.    Visual Studio Ultimate 2012
D.    Visual Studio Express 2012 for Web
E.    Visual Studio Express 2012 for Windows 8

Answer: ABCD

QUESTION 24
You would like to create a Windows 8 application by using HTML5, JavaScript, and CSS3.
Which of the following Visual Studio 2012 editions can you use? (Choose all that apply.)

A.    Visual Studio Professional 2012
B.    Visual Studio Premium 2012
C.    Visual Studio Ultimate 2012
D.    Visual Studio Express 2012 for Web
E.    Visual Studio Express 2012 for Windows 8

Answer: ABCE

QUESTION 25
You would like to create web applications and Windows 8 Windows Store applications by using HTML5, JavaScript, and CSS3, but while you’re learning, you don’t want to buy Visual Studio 2012.
Which of the following Visual Studio 2012 editions can you use for free to accomplish your goal?

A.    Visual Studio Professional 2012
B.    Visual Studio Premium 2012
C.    Visual Studio Ultimate 2012
D.    Visual Studio Express 2012 for Web and Visual Studio Express 2012 for Windows 8

Answer: D

QUESTION 26
You would like to create a Windows 8 application by using Blend and HTML5, JavaScript, and CSS3.
Which feature of Blend enables you to pause an application when it reaches a desired state so you can set the style rules for the page and its controls while in this state? (Choose all that apply.)

A.    Assets panel
B.    Projects panel
C.    Visual Design
D.    Interactive mode

Answer: CD

QUESTION 27
You are developing a web form that includes the following HTML.
<input id=”txtValue” type=”text” />
You need to ensure that a value is entered into txtValue before the form is submitted.
Which code segment should you use?
271

A.    Option A
B.    Option B
C.    Option C
D.    Option D

Answer: A

QUESTION 28
Hotspot Question
You are developing a form that captures a user’s email address by using HTML5 and jQuery.
– The form must capture the email address and return it as a query string parameter.
– The query string parameter must display the @ symbol used in the email address.
You need to implement this functionality.
How should you develop the form? (To answer, select the appropriate options from the drop-down lists in the answer area.)

Answer:
281

QUESTION 29
You are developing a web page that consumes a Windows Communication Foundation (WCF) service.
The page includes the following code segment.
var xhr = new XMLHttpRequest() ;
The page uses the xhrHandler() method to listen for changes to the request status of the WCF service calls. It uses the xmlToJavaScript() method to convert the response from the WCF service to a JavaScript object.
The xhrHandler() method must be called automatically each time the request status changes. You need to add the event handler to the request object.
Which line of code should you use?

A.    xhr.onCallback = xhrHandler;
B.    xhr.onreadystatechange = xhrHandler;
C.    xhr.readyState = xhrHandler;
D.    xhr.status = xhrHandler;

Answer: B
Explanation:
http://mrfwebdesign.blogspot.ca/2008/11/xmlhttprequest-xhr.html

QUESTION 30
Drag and Drop Question
You are creating a web worker for an HTML5 application.
The following tasks must be performed from within the web worker:
– Register an event listener for the web worker
– Start and stop the web worker
You need to define a function that performs the required tasks.
Which line of code should you use? (To answer, drag the appropriate line or lines of code to the correct location or locations. Each line of code may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
301
Answer:
302

QUESTION 31
You are developing a web application that uses web workers to process images extracted from an HTML5 CANVAS object on a web page.
You need to pass messages between the web workers and the web page.
Which three types of objects should you use? (Each correct answer presents a complete solution. Choose three.)

A.    JSON
B.    Window
C.    Parent
D.    String
E.    JavaScript
F.    DOM

Answer: ADE

QUESTION 32
Drag and Drop Question
You are developing an airline reservation website by using HTML5 and JavaScript.
A page on the site allows users to enter departure and destination airport information and to search for tickets.
You have the following requirements:
– Users must be able to save information in the application about their favorite destination airport.
– The airport information must be displayed in the destination text box whenever the user returns to the page.
You need to develop the site to meet the requirements.
Which line or lines of code should you use? (To answer, drag the appropriate command or commands from the list of commands to the correct location or locations in the work area. Each line of code may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
321
Answer:
322

QUESTION 33
You are creating a class named Sedan that must inherit from the Car class.
The Sedan class must modify the inherited fourDoor () method.
The Car class is defined as follows.
331
Future instances of Sedan must be created with the overridden method.
You need to write the code to implement the Sedan class.
Which two code segments should you use? (Each correct answer presents part of the solution. Choose two.)
332

A.    Option A
B.    Option B
C.    Option C
D.    Option D

Answer: BC

QUESTION 34
You are modifying a blog site to improve search engine readability.
You need to group relevant page content together to maximize search engine readability.
Which tag should you use?

A.    <nav>
B.    <article>
C.    <span>
D.    <div>

Answer: B
Explanation:
http://www.w3schools.com/tags/tag_article.asp
http://www.w3schools.com/html/html5_new_elements.asp

QUESTION 35
You are developing application web form by using HTML5 and JavaScript.
You need to prevent users from submitting form data more than once.
Which code segment should you use?
351

A.    Option A
B.    Option B
C.    Option C
D.    Option D

Answer: A

QUESTION 36
You are developing an HTML5 web application for a surveyor company that displays topographic images.
The application must:
– Display the topographic images at different zoom levels without loss of detail
– Print the topographic images without loss of detail
– Work from only one source file for each topographic image
You need to ensure that the topographic images display according to the requirements.
Which HTML5 element should you use?

A.    SVG
B.    CANVAS
C.    SAMP
D.    AREA

Answer: A

QUESTION 37
You are modifying a website.
The body of the page will be divided into two sections:
– A content section will contain blog posts and comments.
– An area on the right-hand side will contain advertisements.
The page is defined by the following HTML.
The site must conform to HTML5 standards and must use HTML5 semantic tags.
You need to ensure that the advertisements are on the rightmost section of the page.
Which tag should you use?
371

A.    <aside>
B.    <div>
C.    <article>
D.    <footer>

Answer: A

QUESTION 38
Drag and Drop Question
An HTML page has a CANVAS element.
You need to draw a red rectangle on the CANVAS element dynamically.
The rectangle should resemble the following graphic.
381
How should you build the code segment? (To answer, drag the appropriate line of code to the correct location. Each line of code may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)
382
Answer:
383

QUESTION 39
You are developing an HTML5 page.
You need to add author and copyright information.
Which tag should you use?

A.    <aside>
B.    <header>
C.    <footer>
D.    <section>

Answer: C

QUESTION 40
You are developing an HTML5 web application and are styling text.
You need to use the text-transform CSS property.
Which value is valid for the text-transform property?

A.    Lowercase
B.    Blink
C.    Line-through
D.    20px

Answer: A

Our 70-480 dumps are rich in variety. We offer 70-480 PDF dumps, 70-480 practice test and 70-480 VCE dumps. We ensure you can pass the 70-480 easily. Welcome to GreatExam.com.

http://www.greatexam.com/70-480-exam-questions.html