READ Free Dumps For Microsoft- 70-480
Question ID 14870 | You are implementing an application by using HTML5 and JavaScript. A web page
contains the following HTML table.
The application must:
✑ Identify all rows in the table body that have a class attribute of selected
✑ Exclude the last selected row in the table
You need to implement the web page according to the requirements.
Which CSS selector should you use?
|
Option A | tr:not(tr:last-child).selected < #dataTable
|
Option B | #dataTable > tr.selected:not(tr:last-child)
|
Option C | #dataTable tbody tr.selected:not(tr:last-child)
|
Option D | #dataTable tr.selected:not(tr:last-child)
|
Correct Answer | C |
Explanation Explanation: * [attribute] [target] Selects all elements with a target attribute * :not(selector) not(p) Selects every element that is not a
element Reference: CSS Selector Reference
Question ID 14871 | 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?
|
Option A | xhr.onCallback = xhrHandler;
|
Option B | xhr.onreadystatechange = xhrHandler;
|
Option C | xhr.readyState = xhrHandler;
|
Option D | xhr.status = xhrHandler;
|
Correct Answer | B |
Explanation Explanation: / onreadystatechange: Sets or retrieves the event handler for asynchronous requests. Specifies a reference to an event handler for an event that fires at every state change readyState Returns the state of the object as follows: * 0 = uninitialized open() has not yet been called. * 1 = open send() has not yet been called. * 2 = sent send() has been called, headers and status are available. * 3 = receiving Downloading, responseText holds partial data (although this functionality is not available in IE [3]) * 4 = loaded Done. / Example (assuming that there is a function handler(): var oReq = getXMLHttpRequest(); if (oReq != null) { oReq.open("GET", "http://localhost/test.xml", true); oReq.onreadystatechange = handler; oReq.send(); Reference: XMLHttpRequest object; XMLHttpRequest (XHR) https://msdn.microsoft.com/en-us/library/ie/ms535874(v=vs.85).aspx http://mrfwebdesign.blogspot.ca/2008/11/xmlhttprequest-xhr.html