Keywords & Operators

Question 1 of 23

GIven the following method declaration
 
    public int iterate(int val)
    {
        int numLoops = 0;
        do
        {
            val++;
        }while(false);
        return val;
    }
what is the value returned by iterate if we call it with a value 1.