The result of evaluating an XPath expression is a Node Set.
A node is just another term for "info item".
For example, given the content:
<contents> <para>One</para> <para>Two</para> <para>Three</para> </contents>
the expression:
/content/para
would return three 'para' elements as a set.