String s= "hello"; String t = "hello"; char c[] = {’h’,’e’,’l’,’l’,’o’} ; Which return true?()
A. s.equals(t); B. t.equals(c); C. s==t; D. t.equals(new String("hello")); E. t==c;
A. char str[]; B. char str[][]; C. String str[]; D. String str[10];
A. public int MAX_LENGTH=100; B. final int MAX_LENGTH=100; C. final public int MAX_LENGTH=100; D. public final int MAX_LENGTH=100;