From the text
A language $L$ is in the class $NP$ iff there exists a polynomial-time Turing machine, denoted $V$, that gets an input string $x$ as well as a read-only string called the witness $w$, such that for any input string $x$,
if $x \in L$, then there exits a witness string $w$ such that $V^{w}(x)$ = "yes".
if $x \notin L$, then for any witness string $w$, $V^{w}(x)$ = "no".
The Turing machine $V$ is also called a verifier.
First of all, I am unable to understand the notation $V^{w}(x)$ - is $w$ also an input to the verifier - i.e. is it the same as $V(w,x)$?
Also, what is the nature of this witness string? Can someone give an example witness for a simple problem (the problem need not be an NP hard problem) and how the witness string is used by the verifier?