PrepAway - Latest Free Exam Questions & Answers

Author: seenagape

Which JavaScript code segment should you use?

You are developing a customer web form that includes the following HTML.
<label id=”txtValue”X/label>
Information from the web form is submitted to a web service. The web service returns the following
JSON object.
{
“Confirmation”: “1234”,
“FirstName”: “John”
}
You need to display the Confirmation number from the JSON response in the txtValue label field.
Which JavaScript code segment should you use?

You need to develop the application to meet the requirements

HOTSPOT
You are developing a web application that retrieves data from a web service. The data being
retrieved is a custom binary datatype named bint. The data can also be represented in XML.
Two existing methods named parseXml() and parseBint() are defined on the page.
The application must:
Retrieve and parse data from the web service using binary format if possible
Retrieve and parse the data from the web service using XML when binary format is not possible
You need to develop the application to meet the requirements.
What should you do? (To answer, select the appropriate options from the drop-down lists in the
answer area.)

How should you use delivery notifications?

You are developing a Windows Store app by using HTML5 and JavaScript. The app will be
used to monitor road traffic conditions.
The app must support live tile notifications, in accordance with the following requirements:
Update the tile every five minutes when the app is in the running state.
Update the tile once in the morning and once in the evening when the app is in the
suspended state.
Implement updates to tiles to optimize the power and resource consumption when the app is
suspended or not otherwise running.
You need to implement delivery notifications to ensure that the requirements are met.
How should you use delivery notifications?

Which code segments should you use?

HOTSPOT
You are developing a Windows Store app by using HTML5 and JavaScript.
The app defines the following objects:
InkManager is an object to process and manipulate the ink-related data from the stylus.
InkContext is an object to hold the surface context.
CurrentPenId is an object to restrict input processing to one stroke at a time.
The app must support the following requirements:
Support the use of a stylus input device.

Begin capturing input when the stylus first touches the screen.
Render stylus movements in real time.
You need to ensure that the requirements are met.
Which code segments should you use? (To answer, select the correct option from each
drop-down list in the answer area.)

Which code segment should you use to replace the Loader function?

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?

You need to ensure that the slider control meets the requirements

DRAG DROP
You 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.)

Which code segments should you use?

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.
<code>
function Employee() {}
Employee.prototype.PayEmployee = function ( ){
alertt’Hi there!’);
}
</code>
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.)