35. Given the following method definition in a class that 
    otherwise compiles correctly:

    public boolean testAns( String ans , int n )
    {
    boolean rslt;
    if( ans.equalsIgnoreCase("YES") &&
        n > 5  ) rslt = true;
    return rslt;
    }
    
    What will be the result of trying to compile the class 
    and execute the testAns method with inputs of "no" and 5?

A. A runtime exception will be thrown in the testAns method.
B. A result of false will be returned.
C. A compiler error will prevent compilation.
D. A result of true will be returned.
