Examveda
Examveda

What will be the output of the following Java code?
class output 
{
    public static void main(String args[])
    {
        char ch;
        ch = "hello".charAt(1);
        System.out.println(ch);
    }
}

A. h

B. e

C. l

D. o

Answer: Option B


This Question Belongs to Java Program >> Strings

Join The Discussion

Related Questions on Strings