adplus-dvertising
frame-decoration

Question

What is the output of this program?
    class string_class 
    {
        public static void main(String args[])
        {
            String obj = "I LIKE JAVA";   
            System.out.println(obj.length());
        }
    }

a.

9

b.

10

c.

11

d.

12

Posted under Java Programming

Answer: (c).11

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this program?