MCSA: Web Applications Certification Exam 70-480 Dumps

Want to pass 70-480 Programming in HTML5 with JavaScript and CSS3 to get MCSA: Web Applications certification? Actually, there are two paths for getting Web Applications:

Path One: Pass 70-480 exam and 70-486 exam

Path Two: Pass 70-483 exam and 70-486 exam

To help you pass 70-480 exam, Dumpsbase updated MCSA: Web Applications Certification Exam 70-480 Dumps to V13.02. There are 288 exam questions and answers in V13.02. You only need to memorize all these Q&As well, then you can pass 70-480 Programming in HTML5 with JavaScript and CSS3 exam successfully.

MCSA: Web Applications Certification Exam 70-480 Dumps

1. Topic 1, Volume A

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, [email protected])

• 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.)

2. 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?

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?

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

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?

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?

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

8. 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.)

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

<input id = "txtValue" />

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

You need to add validation to the text box control.

Which HTML should you use?

10. 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.)

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?

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

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?

14. HOTSPOT

You are developing an airline reservation website by using HTML5 and JavaScript. A page on the site allows users to enter departure and destination airport information and search for tickets.

You have the following requirements:

• Users must be able to save information in the application about their favorite destination airport.

• The airport information must be displayed in the destination text box whenever the user returns to the page.

You need to develop the site to meet the requirements.

Which lines of code should you use? (To answer, select the appropriate options from the drop-down lists in the answer area.)

15. HOTSPOT

You are developing an HTML5 web application for displaying encyclopedia entries.

Each encyclopedia entry has an associated image that is referred to in the entry.

You need to display the image by using the correct semantic markup.

What should you do? (To answer, select the appropriate options from the drop-down list in the answer area.)

16. 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?

17. You are developing a web form that includes the following code.

When a user selects the check box, an input text box must be added to the page dynamically.

You need to ensure that the text box is added.

Which function should you use?

18. HOTSPOT

An HTML page has a canvas element.

You need to draw a red rectangle on the canvas element dynamically. The rectangle should resemble the following graphic.

How should you build the code segment? (To answer, select the appropriate options from the drop-down lists in the answer area.)

19. You are developing an HTML5 page that has an element with an ID of logo. The page includes the following HTML.

<div>

Logo:<br>

<div id="logo">

</div>

</div>

You need to move the logo element lower on the page by five pixels.

Which lines of code should you use? (Each correct answer presents part of the solution. Choose two.)

20. You are developing a web page by using HTML5 and C5S3. The page includes a <div> tag with the ID set to validate.

When the page is rendered, the contents of the <div> tag appear on a line separate from the content above and below it.

The rendered page resembles the following graphic.

The page must be rendered so that the <div> tag is not forced to be separate from the other content. The following graphic shows the correctly rendered output.

You need to ensure that the page is rendered to meet the requirement.

Which line of code should you use?

21. HOTSPOT

You are creating a web worker for an HTML5 application.

The following tasks must be performed from within the web worker:

• Register an event listener for the web worker

• Start and stop the web workerYou need to define a function that performs the required tasks.

Which code segment should you use? (To answer, select the appropriate option from the drop-down list in the answer area.)

22. You are creating a JavaScript function that displays the name of a web application.

You declare the following button element.

<input type="button" id= "About" value="About" />

When a user clicks the button, a JavaScript function named About must be called.

You need to create an event handler that calls the About function when the button is clicked.

Which two code segments can you use? (Each correct answer presents a complete solution. Choose two.)

23. HOTSPOT

You are creating a function by using JavaScript. The function accepts an object as the parameter and returns a string that identifies the data type of the object.

You have the following requirements:

• The function must return "Number" if the object is a number.

• The function must return "String" if the object is a string.

• The function must return "Unknown" if the object is neither a number nor a string.You need to implement the function to meet the requirements.

How should you build the code segment? (To answer, select the appropriate options from the drop-down lists in the answer area.)

24. 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.)

25. You are developing an application that uses a third-party JavaScript library named doWork().

The library occasionally throws an "object is null or undefined" error with an error code of-2146823281.

The application must:

• Extract and handle the exceptions thrown by doWork()

• Continue normal program execution if other exceptions occur

You need to implement the requirements.

Which code segment should you use?

26. You are troubleshooting a web page that includes the following code. (Line numbers are included for reference only.)

What is displayed in the alert from line 11?

27. You are developing a web application that consumes services from a third-party application. A web worker processes the third-party application requests in the background. A page in the application instantiates the web worker process.

You need to establish two-way communications between the web worker process and the page.

Which two actions will achieve this goal? (Each correct answer presents a complete solution. Choose two.)

28. You are developing an HTML5 web application that displays customer mailing address information.

The application loads addresses from a web service by using AJAX.

The following code defines a Customer object and loads address data.

You need to implement the loadAddress function.

Which code segment should you use?

29. You are developing an HTML5 web page.

The appearance of the text box must change when a user moves the focus to another element on the page.

You need to develop the page to respond to user action.

Which line of code should you use?

30. DRAG DROP

You are developing an online shopping application that accepts credit cards for payment.

If the credit card number is invalid, the application must:

Generate an error

Assign "200" to the error number

Assign "Invalid" to the error description

You need to write the code that meets the requirements.

How should you write the code? (To answer, drag the appropriate code segment or segments to the correct location 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.)

31. You are developing an HTML5 page that includes several paragraph elements.

You have the following requirements:

Add a drop shadow that is one inch below the text in the paragraph

Set the radius of the drop shadow to five pixels

You need to style the paragraphs to meet the requirements.

Which CSS style should you use?

32. You are creating a web form that users will use to enter their personal information. The form includes the following HTML.

You have the following requirements:

• When a user enters an input box, the cell on the right must turn green.

• When a user leaves an input box, the cell on the right must turn white.

You need to create the web form to meet these requirements.

Which code segment should you use?

nth-child

33. You are developing a web page.

You create a grid layout by using the following CSS segment.

You have the following requirements:

• You must place content in the first column of the second row.

• The content must span two columns.

You need to ensure that the style of the grid meets the requirements.

Which CSS segment should you use?

34. DRAG DROP

You are creating an application by using HTML5 and CSS3. The styles for the pages are derived from five style sheets.

The styles are not being applied correctly to the pages in the application.

You need to apply the styles from highest priority to lowest priority.

In which order should you use the five style sheets? (To answer, move the style sheet types from the list of style sheet types to the answer area and arrange them in the correct order.)

35. You are developing a web page by using HTML5.

You have the following requirements:

• An H1 element must be placed at the top left corner of the page.

• The size and location of the H1 element must not change if additional elements are added to the page.

You need to position the H1 element on the page.

Which CSS3 style should you use?

36. You are styling a box object on a page by using CSS3.

You need to set the transparency of the object to 50%.

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

37. HOTSPOT

You are developing a web page that will be accessed from various types of devices.

You have the following requirements:

• The appropriate display resolution must be selected dynamically based on the device connecting to the page.

• Mobile devices with a maximum width of 480 pixels must be able to use the page.

You need to ensure that the page displays correctly on any device.

How should you build the code? (To answer, select the appropriate options from the drop-down lists in the answer area.)

38. You are developing an HTML5 web application and are styling text.

You need to use the text-transform CSS property.

Which values are valid for the text-transform property?

39. DRAG DROP

You are developing a website that has many web pages with hyperlinks to other sites.

You need to ensure that if a hyperlink contains an image, the linked web page opens in a new window.

Which jQuery code segment or segments should you use? (To answer, drag the appropriate line of code to the correct location. Each line of code 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.)

40. You are developing a page that includes text and an illustration.

The web page resembles the following image.

• You have the following requirements:

• The illustration must be in the center of the page.

• The text must flow around the left, right, top, and bottom of the illustration.

You need to ensure that the layout of the web page meets the requirements.

Which line of code should you use?

41. You are developing a web page that has a group of H1 and H2 elements. The page also includes a CSS class named underlineMe.

You have the following requirements:

• The font color of all H1 and H2 elements must be changed to red.

• The CSS class underlineMe must be applied to all H1 and H2 elements.

You need to update the web page to meet the requirements.

Which code segment should you use?

42. HOTSPOT

You are developing an HTML5 application for a company.

You apply the following style to a DIV element on a page.

You need to submit a draft illustration of the results of this code.

Which illustration should you submit? (To answer, select the appropriate illustration in the answer area.)

43. DRAG DROP

You are developing a web page that will be accessed from various types of devices.

• You have the following requirements:

• The appropriate display resolution must be selected dynamically based on the device that is connecting to the page.

• Mobile devices with a maximum width of 480 pixels must be able to use the page.

You need to ensure that the page displays correctly on any device.

How should you build the code? (To answer, drag the appropriate media statement to the correct location. Each media 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.)

44. DRAG DROP

You are developing a web page by using HTML5 and CSS3.

Hyperlinks on the page must be rendered with a style that reflects the last user action performed.

You need to style the four anchor elements in the document.

In what order should you specify the four anchor selectors? (To answer, move the appropriate anchor selectors from the list of CSS codes to the answer area and arrange them in the correct order.)

45. You are developing a web page that will be divided into three vertical sections. The main content of the site will be placed in the center section. The two outer sections will contain advertisements.

You have the following requirements:

• The main content section must be set to two times the width of the advertising sections.

• The layout must be specified by using the CSS3 flexible box model.

You need to ensure that the visual layout of the page meets the requirements.

Which CSS3 property should you use?

46. You are developing an HTML5 page.

The page includes the following code.

The inner paragraph must be exactly 15 pixels from the top left corner of the outer paragraph. You set the left style for the inner paragraph to the appropriate value.

You need to set the position property of the inner paragraph.

Which value should you use?

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

<input id="txtValue"/>

If a customer enters a value in the input field, then it must be a numeric value.

You need to add validation to the input field.

Which HTML should you use?

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

<input id="txtValue"/>

You need to change the HTML markup so that customers can enter only a valid three-letter country code.

Which HTML should you use?

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

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

You need to ensure that a value is entered into txtValue before the form is submitted.

Which code segment should you use?

50. HOTSPOT

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 used in the email address.

You need to implement this functionality.

How should you develop the form? (To answer, select the appropriate options from the drop-down lists in the answer area.)

51. Topic 2, Volume B

You are developing a web page that consumes a Windows Communication Foundation (WCF) service. The page includes the following code segment.

var xhr = new XMLHttpRequest() ;

The page uses the xhrHandler() method to listen for changes to the request status of the WCF service calls. It uses the xmlToJavaScript() method to convert the response from the WCF service to a JavaScript object.

The xhrHandler() method must be called automatically each time the request status changes.

You need to add the event handler to the request object.

Which line of code should you use?

52. DRAG DROP

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 by using binary format if possible

• Retrieve and parse the data from the web service by using XML when binary format is not possible

You need to develop the application to meet the requirements.

What should you do? (To answer, drag the appropriate code segment to the correct location. 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.)

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

<input id="txtValue"/>

You need to develop the form so that customers can enter only a valid country code consisting of three English alphabet characters.

Which code segment should you use?

54. You are developing an application that consumes an external web service that returns the latest stock rate.

The application has two methods:

• The getResults() method makes an AJAX web service request

• The ShowRate() method displays the stock rate from the web service response

You need to ensure that the ShowRate() method always displays the latest stock rate.

Which code segment should you use?

55. DRAG DROP

You are developing an application that reads information from a file.

The application must:

• Execute a block of code if there is an error accessing the file

• Execute a second block of code whether or not there is an error accessing the file

You need to ensure that the error handling requirements are met.

Which three statements should you implement in sequence? (To answer, move the appropriate statements from the list of actions to the answer area and arrange them in the correct order.)

56. HOTSPOT

You are developing an online shopping application that accepts credit cards for payment.

If the credit card number is invalid, the application must:

Generate an error

Assign "200" to the error number

Assign "Invalid" to the error description

You need to write the code that meets the requirements.

How should you write the code? (To answer, select the appropriate option from the drop-down list in the answer area.)

57. You are creating a JavaScript function to display the current version of a web application

You declare a button as follows.

<input type="button" id="About" value="About" />

You need to create an event handler for the button by using an anonymous function.

Which code segment should you use?

58. DRAG DROP

You are creating a function by using JavaScript. The function accepts an object as the parameter and returns a string that identifies the data type of the object.

You have the following requirements:

• The function must return "Number" if the object is a number

• The function must return "String" if the object is a string

• The function must return "Unknown" if the object is neither a number nor a string

You need to implement the function to meet the requirements.

How should you build the code segment? (To answer, drag the appropriate word to the correct location in the code segment. Each word 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.)

59. You are testing the value of the following variable in JavaScript.

var height = "300";

A block of code must execute if the following conditions are true:

• The height variable is set to 300

• The height variable is of type string

You need to implement the code to run the test.

Which line of code should you use?

60. DRAG DROP

You are developing an application for an online retailer. The company ships only to certain countries.

The application must:

• Store a list of country codes in an array

• Validate the country code of the shipping address against the countries array

• Include a Boolean value in the array that indicates whether or not you can ship to the country

• Display a list of countries that can be shipped to if the user inputs a code for a country that the retailer cannot ship to

You need to develop the application to meet the requirements.

Which code segment or segments should you use? (To answer, drag the appropriate code segment or segments from the list of code segments to the correct location or locations in the work 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.)

61. DRAG DROP

You are creating a web worker for an HTML5 application.

The following tasks must be performed from within the web worker:

• Register an event listener for the web worker

• Start and stop the web worker

You need to define a function that performs the required tasks.

Which line of code should you use? (To answer, drag the appropriate line or lines of code to the correct location or locations. Each line of code 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.)

62. 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.)

63. DRAG DROP

You are developing an airline reservation website by using HTML5 and JavaScript. A page on the site allows users to enter departure and destination airport information and to search for tickets.

You have the following requirements:

• Users must be able to save information in the application about their favorite destination airport.

• The airport information must be displayed in the destination text box whenever the user returns to the page.

You need to develop the site to meet the requirements.

Which line or lines of code should you use? (To answer, drag the appropriate command or commands from the list of commands to the correct location or locations in the work area. Each line of code 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.)

64. You are creating a class named Sedan that must inherit from the Car class. The Sedan class must modify the inherited fourDoor () method.

The Car class is defined as follows.

Future instances of Sedan must be created with the overridden method.

You need to write the code to implement the Sedan class.

Which two code segments should you use? (Each correct answer presents part of the solution. Choose two.)

65. 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?

66. You are developing application web form by using HTML5 and JavaScript.

You need to prevent users from submitting form data more than once.

Which code segment should you use?

67. You are developing an HTML5 web application for a surveyor company that displays topographic images.

The application must:

• Display the topographic images at different zoom levels without loss of detail

• Print the topographic images without loss of detail

• Work from only one source file for each topographic image

You need to ensure that the topographic images display according to the requirements.

Which HTML5 element should you use?

68. DRAG DROP

An HTML page has a CANVAS element.

You need to draw a red rectangle on the CANVAS element dynamically.

The rectangle should resemble the following graphic.

How should you build the code segment? (To answer, drag the appropriate line of code to the correct location. Each line of code 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.)

69. You are modifying a website. The body of the page will be divided into two sections:

• A content section will contain blog posts and comments.

• An area on the right-hand side will contain advertisements.

The page is defined by the following HTML.

The site must conform to HTML5 standards and must use HTML5 semantic tags.

You need to ensure that the advertisements are on the rightmost section of the page.

Which tag should you use?

70. You are developing an HTML5 page. You need to add author and copyright information.

Which tag should you use?

71. You are developing an HTML5 web application and are styling text.

You need to use the text-transform CSS property.

Which value is valid for the text-transform property?

72. 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.)

73. You are creating a JavaScript object that represents an employee.

You need to extend the Employee object by adding the GetPayroll() method.

You need to ensure that all future instances of the Employee object implement the GetPayroll() method.

Which code segment should you use?

74. You are developing an HTML5 page that includes several paragraph elements.

You have the following requirements:

• Add a drop shadow that is one inch below the text in the paragraph

• Set the radius of the drop shadow to five pixels

You need to style the paragraphs to meet the requirements.

Which CSS style should you use?

75. You are developing an HTML5 web application and are styling text.

You need to use the text-transform CSS property.

Which value is valid for the text-transform property?

76. 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?

77. You are developing an HTML5 page that has an element with an ID of picture.

The page includes the following HTML.

You need to move the picture element lower on the page by five pixels.

Which two lines of code should you use? (Each correct answer presents part of the solution. Choose two.)

78. 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?

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

<input id="txtValue"/>

You need to change the HTML markup so that customers can enter only a valid three-letter country code.

Which HTML should you use?

80. You are developing an HTML5 web application and are styling text.

You need to use the text-transform CSS property.

Which value is valid for the text-transform property?


 

 

MCSE: Productivity Skype for Business Exam 70-333 Practice Questions
Updated MCSE: Mobility Certification 70-703 Study Guide Online

Add a Comment

Your email address will not be published. Required fields are marked *