Showing posts with label 70-480 Test Dumps. Show all posts
Showing posts with label 70-480 Test Dumps. Show all posts

Wednesday, 8 February 2017

70-480 Sample Question

Question: 20

You are developing an HTML5 web application for an architectural company that displays architectural blueprints. The application must:
Display the blueprints at different zoom levels without loss of detail Print the blueprints without loss of detail Work from only one source file per blueprint. You need to ensure that blueprints display according to the requirements. Which HTML5 element should you use?

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

Answer: C

Tuesday, 24 January 2017

70-480 Sample Question

Question: 19

You develop an HTML5 application. You give users a numeric access code that can be used only one time. Users must enter the numeric access code in the login form of the application. The numeric characters must be hidden by a masking character. You need to implement the form element for users to enter the code. Which HTML element should you use?

A. <input type="password" required autocomplete="off">
B. <input type="input" autocomplete="off" required />
C. <input type="password" stytem" visiblity:hidden;" required />
D. <input type="button" value="password" required />

Answer: A

Sunday, 1 January 2017

70-480 Sample Question

Question: 18

You need to test the value of the following variable in JavaScript.
var length = "75";
A block of code must execute if the length equals 75 regardless of the data type.
You need to use the statement that meets this requirement.
Which lines of code should you use? (Each correct answer presents a complete solution. Choose two.)

A. if (length = = = 75)
B. if (length = = 75)
C. if (length! = 75)
D. if (length = = "75")

Answer: B,D