It is well known that you can determine the values of $n\geq 2$ bits using $k$ yes/no questions about the bits (for example, "is $x_1 \oplus x_3 = 1$?), even if one (but not more) of the answers obtained may be a lie, if and only if $$ 2^n k \leq 2^k $$ This is just the observation that you can always construct a Hamming code using $k-n$ extra bits, which corrects single-bit errors, if $k$ is of that size.
(This does not work if $n=1$ since you require $3$ bits rather than $2$ to achieve single error correction.)
For example, you can determine a 4-bit number using seven questions, even allowing for one possible lie, by asking for the values of each bit, and then asking for the values of $x_0 \oplus x_1 \oplus x_2$, then $x_0 \oplus x_1 \oplus x_3$, then $x_0 \oplus x_2 \oplus x_3$. Note that these questions can be fixed beforehand; later questions need not depend on answers to the earlier ones.
But what if the nature of the yes/no questions allowed is restricted?
In particular, can you determine (with certainty) a specific number $x \in [0,15]$ using no more that seven questions of the form "Is $x > q$", coping with up to one lie? It is allowable to tailor later questions based on the answers to earlier questions.
As a generalization, what are the conditions on $N$ and $k$ that suffice to ensure that you can determine a specific $x \in [0,N)$ using up to $k$ questions of the form "Is $x > q$", coping with up to one lie? My real question to be posed is:
What is the largest value of $N$ such that a specific number $x \in [0,N)$ can with certainty be determined in $7$ "Is $x > q$" questions, coping with at most one lie?
Stanislaus Ulam did some work on this in the 1940's and that led to the work that led to Hamming codes, but I don't remember whether he actually presented a condition for general $N$.
For some examples, $$k(N=2) = 3 \\ k(N=3) = 4 \\ k(N=4) = 5 \\ k(N=5) = 6 \\ k(N=6) = 6 \\ k(N=7) = 7 \\ k(N=8) = 7 \\ $$
As for the case of $N = 15$, I strongly suspect that the "information theory value" of seven questions does not suffice when the ordering restriction is imposed. But I'd be interested to see a proof.
I have proven an optimal strategy and written a short program to compute for small $N$; see my answer to my generalized question.
This completely answers your question rigorously. Specifically, $7$ queries is enough to distinguish up to at most $12$ possibilities, while $8$ queries is enough to distinguish up to at most $22$ possibilities.