Oracle 1Z0-808 Exam question no. 46

Q.- Given:-

public class FieldInit { 
            Character c; 
            boolean b; 
            float f; 
            void printAll( ) { 
                        System.out.println("c =" + c); 
                        System.out.println("b =" + b); 
                        System.out.println("f  =" + f); 
            }
            public static void main(String[ ] args)  {
                       FieldInit f = new FieldiInit( ); 
                       f.printAll( ); 
            }
}

What is the result? 

A) c = null 
     b = false 
     f = 0.0 

B) c = 
     b = false 
     f = 0.0 

C) c = null 
     b = true 
     f = 0.0 

D) c = 0 
     b = false 
     f = 0.0F


⧪ please give your answer in a comment section.

Post a Comment

3 Comments