Multiple choice technology

//* in Xpath stands for

  1. all child nodes

  2. all elements

  3. all elements which have attributes

  4. no meaning at all

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In XPath expressions, the double slash // selects nodes from the current node downward regardless of the document structure, and the asterisk * matches any element node. Together, //* selects all element nodes in the document.