70-480 Latest Certification Tests

by

Adila Masih

Question: 1

DRAG DROP

You are validating user input by using JavaScript and regular expressions.

A group of predefined regular expressions will validate two input fields:

An email address in a function named validateEmail (for example, firstname@contoso.com)

A nine-digit number that allows optional hyphens after the second and fifth character in a function named validateSSN(for example, 555555555 or 555-55-5555)

You need to use the correct expression to validate the input.

Which expression should you insert into each function? (To answer, drag the appropriate regular expression statement to the correct location. Each regular expression statement may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

Answer:

Question: 2

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

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: D

.val

Return value

A string containing the value of the element, or an array of strings if the element can have multiple values

Question: 3

You are developing a customer contact form that will be displayed on a page of a company’s website. The page collects information about the customer.

If a customer enters a value before submitting the form, it must be a valid email address.

You need to ensure that the data validation requirement is met.

What should you use?

A.

B.

C.

D.

Answer: D

Example:

E-mail:

Reference:

http://www.w3schools.com/html/html5_form_input_types.asp

Question: 4

DRAG DROP

You are developing a form that captures a user’s email address by using HTML5 and jQuery.

The form must capture the email address and return it as a query string parameter. The query string parameter must display the @ symbol that is used in the email address.

You need to implement this functionality.

How should you develop the form? (To answer, drag the appropriate code segment to the correct target or targets in the answer area. Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.)

Answer:

Explanation:

* The serialize() method creates a URL encoded text string by serializing form values.

You can select one or more form elements (like input and/or text area), or the form element itself.

The serialized values can be used in the URL query string when making an AJAX request.

Example: $(“form”).serialize());

* decodeURIComponent

The decodeURIComponent() function decodes a URI component.

Return Value:A String, representing the decoded URI

Incorrect:

Not decodeURI:

decodeURI is intended for use on the full URI.

decodeURIComponent is intended to be used on .. well .. URI components that is any part that lies between separators (; / ? : @ & = + $ , #).

Reference: jQuery serialize() Method

http://www.w3schools.com/jquery/ajax_serialize.asp

http://www.w3schools.com/jsref/jsref_encodeuri.asp

Question: 5

You are developing an application that consumes a Windows Communication Foundation (WCF) service.

The application interacts with the service by using the following code. (Line numbers are included for reference only.)

You need to authenticate to the WCF service.

What should you do?

A. At line 11, add the following lines of code.

,username: yourusername

,password: yourpassword

B. At line 11, add the following line of code.

,credentials: prompt

C. At line 06, replace the code with the following line of code.

url: “http://contoso.com/Service.svc/GetCountry?

Username=username&password=password”,

D. At line 11, add the following line of code. The username and password will be stored in an XML file.

,credentials: credentials.xml

Answer: C

Question: 6

You are developing a web page that enables customers to upload documents to a web server. The page includes an HTML5 PROGRESS element named progressBar that displays information about the status of the upload.

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

An event handler must be attached to the request object to update the PROGRESS element on the page.

You need to ensure that the status of the upload is displayed in the progress bar.

Which line of code should you insert at line 03?

A. xhr.upload.onloadeddata =

B. xhr.upload.onplaying =

C. xhr.upload.onseeking =

D. xhr.upload.onprogress =

Answer: D

Example:

xhr.upload.onprogress = function(evt)

{

if (evt.lengthComputable)

{

var percentComplete = parseInt((evt.loaded / evt.total) * 100);

console.log(“Upload: ” + percentComplete + “% complete”)

}

};

Reference:

http://stackoverflow.com/questions/3352555/xhr-upload-progress-is-100-from-the-start

Question: 7

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

Username:

Username: Reference: HTML required Attributehttp://www.w3schools.com/tags/att_input_required.asp Question: 10 DRAG DROPYou are developing a web page for runners who register for a race. The page includes a slider control that allows users to enter their age.You have the following requirements:All runners must enter their age.Applications must not be accepted from runners less than 18 years of age or greater than 90 years.The slider control must be set to the average age (37) of all registered runners when the page is first displayed.You need to ensure that the slider control meets the requirements.What should you do? (To answer, drag the appropriate word or number to the correct location in the answer area. Each word or number may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.) Answer: Box 1-3: The is used for input fields that should contain a value within a range.Example Box 4-5: Use the value attribute to set the default valueBox 6: Definition and UsageThe required attribute is a boolean attribute.When present, it specifies that an input field must be filled out before submitting the form.Example Username: Reference: HTML Input Typeshttp://www.w3schools.com/html/html_form_input_types.asp Question: 11 You are developing an HTML5 web application that displays the current temperature whenever a button is clicked. The following code provides this functionality. When the temperature is loaded, the status property on the loader instance does not change.You need to ensure that the status property on the loader instance is updated when the temperature is loaded.Which code segment should you use to replace the Loader function? A. Option AB. Option BC. Option CD. Option D Answer: A Incorrect:not D: window.status propertyThe status property sets the text in the status bar at the bottom of the browser, or returns the previously set text. Question: 12 You are creating a class named Consultant that must inherit from the Employee class. The Consultant class must modify the inherited PayEmployee method. The Employee class is defined as follows.function Employee() {}Employee.prototype.PayEmployee = function ( ){alert(‘Hi there!’);}Future instances of Consultant must be created with the overridden method.You need to write the code to implement the Consultant class.Which code segments should you use? (Each correct answer presents part of the solution. Choose two.) A. Consultant.PayEmployee = function (){alert(‘Pay Consulant’);}B. Consultant.prototype.PayEmployee = function (){alert(‘Pay Consultant’);}C. function Consultant () {Employee.call(this);}Consultant.prototype = new Employee();Consultant.prototype.constructor = Consultant;D. function Consultant() {Employee.call(this); }Consultant.prototype.constructor = Consultant.create; Answer: B, C * Object.prototype.constructorReturns a reference to the Object function that created the instance’s prototype. Note that the value of this property is a reference to the function itself, not a string containing the function’s name. The value is only read-only for primitive values such as 1, true and “test”.* The constructor property is created together with the function as a single property of func.prototype.Reference: Object.prototype.constructor Question: 13 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. B.

C.

D.

Answer: C HTML

}