getcertified4sure.com

Tips for exam 70 480 pdf




Exam Code: 70 480 pdf (Practice Exam Latest Test Questions VCE PDF)
Exam Name: Programming in HTML5 with JavaScript and CSS3
Certification Provider: Microsoft
Free Today! Guaranteed Training- Pass 70 480 dumps Exam.

Q51. You are developing a web page that includes the following HTML. 

<span id = "myTextSpan" class = "redText"> Hello There! </span> 

The font color of text inside the span must be red. 

You need to develop the web page to meet the requirement. 

Which two CSS segments will achieve the goal? (Each correct answer presents a complete solution. Choose two.) 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer: AC


Q52. 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. <section> 

B. <tbody> 

C. <div> 

D. <table> 

Answer:


Q53. You are modifying an existing web page. The page is being optimized for accessibility. The current page contains the following HTML. 

Standards-compliant screen readers must be able to identify the links contained within the navigation structure automatically. 

You need to create the navigation link structure in the page. 

With which container tags should you wrap the existing markup? 

A. <navmap> </navmap> 

B. <div id="nav"> </div> 

C. <nav> </nav> 

D. <map> </map> 

Answer:


Q54. You are developing an HTML5 web form to collect feedback information from site visitors. 

The web form must display an INPUT element that meets the following requirements: 

Allow numeric values between 1 and 10. 

Default to the value of 5. 

Display as a slider control on the page. 

You need to add the INPUT element to the form. 

Which HTML element should you add? 

A. Rating (Between 1 and 10): <input type="number" name="rating" min ="1" max-"10"> 

B. Rating (Between 1 and 10): <input type="number" name="rating" min="1" max="10" default="5"> 

C. Rating (Between 1 and 10): <input type="range" name="rating" min="0" max="10" default"="5"> 

D. Rating (Between 1 and 10): <input type="range" name="rating" min="10" max="10" value="5"> 

Answer: D


Q55. You implement an application by using HTML5 and JavaScript. You create a webpage that contains the following HTML: 

The application must place a border on only the first UL element that is contained in the DIV element. 

You need to update the webpage. 

What should you do? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q56. You are creating a JavaScript object that represents a customer. 

You need to extend the Customer object by adding the GetCommission method. 

You need to ensure that all future instances of the Customer object implement the GetCommission method. 

Which code segment should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer: D


Q57. 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. <span> 

B. <nav> 

C. <cable> 

D. <section> 

Answer:


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


Q59. You are developing a customer web form that includes the following HTML. 

<input id="txtValue" type="text" /> 

A customer must enter a valid age in the text box prior to submitting the form. 

You need to add validation to the control. 

Which code segment should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q60. You are creating a page that contains detailed employee information for a company portal. The page uses a jQuery library. The page contains a hidden button named btnEdit that is defined by the following code. 

<button id="btnEdit" style="display: none;n>Edit</button> 

The button is not displayed by default. 

The button must be displayed only if the user is logged on. 

You need to add code to the document.ready() function to meet the requirements for the button. 

Which line of code should you use? 

A. $ (‘#btnEdit’).appear (); 

B. $ (‘#btnEdit’).visible = true; 

C. $ (‘#btnEdit’).show(); 

D. $ (‘#btnEdit’).Visible(); 

Answer: