Multiple choice technology //* in Xpath stands for all child nodes all elements all elements which have attributes 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.