getcertified4sure.com

Amazing mcsd 70 480 secrets




Cause all that matters here is passing the Microsoft 70 480 pdf exam. Cause all that you need is a high score of 70 480 exam questions Programming in HTML5 with JavaScript and CSS3 exam. The only one thing you need to do is downloading Actualtests exam 70 480 pdf exam study guides now. We will not let you down with our money-back guarantee.

Q11. You develop a webpage. 

The webpage must display a grid that contains one row and five columns. Columns one, three, and five are the same width. Columns two and four are the same width, but much wider than columns one, three, and five. The grid resembles the following image: 

The grid must meet the following requirements: 

Each row must be tall enough to ensure that images are not cut off. 

Each row must contain five columns. 

The width of the columns must not change when the screen is resized or rotated. 

You need to define the style for the grid. Which CSS3 style should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


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

B. Red 

C. 20px 

D. Italic 

Answer:


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


Q14. You develop a webpage by using HTML5. 

The user interface of the webpage must show a gray-lined box that contains the label Enter your information:. Inside the box are two labels and two input boxes. The first input box must be labeled Name:. The second input box must be labeled Email:. 

Below the box is a Submit button. 

The user interface must look like the following; You need to create the user interface. Which markup should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer: B


Q15. You are developing an HTML5 page that includes several paragraph elements. 

You have the following requirements: . Add a drop shadow that is one inch below the text in the paragraph . Set the radius of the drop shadow to five pixels You need to style the paragraphs to meet the requirements. 

Which CSS style should you use? 

A. text-shadow: 72pt 0pt 5pt 

B. text-shadow: 5px lin 0px; 

C. text-shadow: 72pt 5em 0px 

D. text-shadow: 72pt 0em 5px; 

Answer:


Q16. You develop an HTML5 webpage with custom CSS. You have the following HTML markup: 

<div class="new" Item">...</div> 

You have the following requirements: 

. In addition to your CSS, you must use a corporate branded stylesheet named corporate.ess. 

. The corporate.ess file contains the style rule that must be used for .newsItem. 

. You must use the corporate.ess file to ensure that the webpage changes when the brand changes. 

. You must add additional style rules to the webpage. 

. You cannot modify the corporate.ess file. 

You need to apply the appropriate CSS rules to meet the requirements. 

What should you do? 

A. Add a CSS class named .newsItemUpdates to the webpage, add only the new styles to this class, and update the class attribute of the HTML markup: 

<div class=nnewsltem newsItemUpdates">..,</div> 

B. Update the corporate.ess file to include! important for each rule for the .newsItem. class, and add the new CSS rules to the webpage by using the CSS class .newsItem. 

C. Add a CSS class named .newsitemUpdates to the webpage, add the new styles to this class, and update the HTML markup to replace the .newsItem class with this new class: 

<div class*"newsItemOpdates">...</div> 

D. Add the new CSS rules to the webpage by using the CSS class .newsItem, and add! important to each rule. 

Answer: D


Q17. You develop an HTML5 webpage that contains the following HTML markup: 

You have the following requirements: 

. Retrieve the content for any OPTION elements when the value of the selected attribute equals selected. . Add the content to a comma separated string. 

You need to retrieve the required data. 

Which two code segments should you add to the webpage? (Each correct answer presents a complete solution. Choose two.) 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

E. Option E 

Answer: BD


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


Q19. You are creating a JavaScript object that represents an employee. 

You need to extend the Employee object by adding the GetPayroll() method. 

You need to ensure that all future instances of the Employee object implement the GetPayroll() method. 

Which code segment should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q20. You are implementing an application by using HTML5 and JavaScript. A web page contains the following HTML table. 

The application must: 

. Identify all rows in the table body that have a class attribute of selected 

. Exclude the last selected row in the table 

You need to implement the web page according to the requirements. 

Which CSS selector should you use? 

A. tr:not(tr:last-child).selected < #dataTable 

B. #dataTable > tr.selected:not(tr:last-child) 

C. #dataTable tbody tr.selected:not(tr:last-child) 

D. #dataTable tr.selected:not(tr:last-child) 

Answer: