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