java.lang

Question 1 of 10

Choose the output of the following code.
class Goo {
           public static void main(String[ ] args) {
                       Character i = new Character( 'x' ) ;
                       Character j = new Character( 'x' ) ;

                       System.out.print( ( i  == j ) + " " );
                       System.out.print( i . equals ( j ) );
           }
}