Click the Exhibit button.

Referring to the exhibit, which XML XPath expression will only show the IP address XML elements?
Click the Exhibit button.
Referring to the exhibit, which XML XPath expression will only show the IP address XML elements?
To only show the IP address XML elements, the correct XPath expression is //address/name. The double slash (//) is used to select nodes from the document from the current node that matches the selection regardless of their location in the document. This expression specifically targets the <address> elements and retrieves their <name> child elements, which contain the IP addresses. Therefore, //address/name is the appropriate choice for extracting only the IP address elements.
Double Slash “//” – Double slash is used to create Xpath with relative path i.e. the xpath would be created to start selection from anywhere within the document.
Correct should be A.
A,B are the correct answers
B is correct
A is correct. // Selects nodes in the document from the current node that match the selection no matter where they are