Examveda
Examveda

What will be the output of the following Java program if input given is 'abcqfghqbcd'?
class Input_Output
{
    public static void main(String args[]) throws IOException
    {	 
        char c;
        BufferedReader obj = new BufferedReader(new InputStreamReader(System.in));
        do
        {
            c = (char) obj.read();
      System.out.print(c);
        } while(c != 'q');
    }
}

A. abcqfgh

B. abc

C. abcq

D. abcqfghq

Answer: Option C


This Question Belongs to Java Program >> Input Output

Join The Discussion

Related Questions on Input Output