70-480 Exam - Programming in HTML5 with JavaScript and CSS3

certleader.com

Q1. You are developing a web page. You create a grid layout by using the following CSS segment. 

You have the following requirements: 

. You must place content in the first column of the second row. 

. The content must span two columns. 

You need to ensure that the style of the grid meets the requirements. 

Which CSS segment should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

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

Q3. 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. Italic 

B. Red 

C. Capitalize 

D. Line-through 

Answer:

Q4. You are developing a web page by using HTML5 and C5S3. The page includes a <div> tag with the ID set to validate. 

When the page is rendered, the contents of the <div> tag appear on a line separate from the content above and below it. The rendered page resembles the following graphic. 

You need to ensure that the page is rendered to meet the requirement. 

Which line of code should you use? 

A. document.getElementById("validate").style.display = "inline"; 

B. document.getElementById("validate").style.margin = "0"; 

C. document.getElementById("validate").style.padding = "0"; 

D. document.getElementSyId("validate").style.display = "block"; 

Answer:

Q5. 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. Hidden 

C. Italic 

D. Line-through 

Answer:

Q6. You are troubleshooting an application. Users report that the UI is slow to respond. 

You need to improve UI responsiveness by moving application tasks to web workers. 

Which two tasks can you move to achieve this goal? (Each correct answer presents a complete solution. Choose two.) 

A. A function that loops through the Document Object Model to update the style of page elements 

B. A long-running calculation that requires looping through an array 

C. A function that performs graphic-intensive animation 

D. A function that stores large amounts of data to local storage 

Answer: BC

Q7. You are creating a web page that contains a canvas with text. 

The page contains the following JavaScript code. (Line numbers are included for reference only.) 

The text on the canvas must rotate 90 degrees when a user clicks a button on the page. 

You need to ensure that the text rotates when the user clicks the button. 

Which line of code should you add at line 03? 

A. context.transform(90); 

B. context.content.getRotation(90); 

C. context.rotate(90); 

D. context.content.rotate (90); 

Answer: C

Q8. You are developing a blog web page that is being optimized for accessibility. The page includes the following HTML. 

The heading tags represent a blog post title, a blog post subtitle, and the author's name. 

You need to ensure that the three headings are treated as a unit but retain their individual formatting. 

Which tags should you use to wrap the H1, H2, and H3 elements? 

A. <group> </group> 

B. <header> </header> 

C. <hgroup> </hgroup> 

D. <headings> </headings> 

Answer:

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

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

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer: BC 

Q10. You are developing an application that uses a JavaScript library. The library contains the following functions. 

The library may throw many types of exceptions. The exceptions are grouped by category. 

You need to catch and identify the exceptions by group. 

Which code segment should you insert at line 05? 

[MISSING]

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer: