These static constructors are correct ? class A { statc intA() { } static A(int x,int y) { } static A(int x) { } }


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What’s the difference between the methods sleep() and wait()?

0 Answers  


what is the difference between thread and runnable types? : Java thread

0 Answers  


I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }

4 Answers   Cap Gemini,


What are the restrictions imposed on method overriding?

0 Answers  


What do you mean by data type?

0 Answers  


Is there any need to import java.lang package?

13 Answers   Sun Microsystems,


What are extraneous variables examples?

0 Answers  


What is the difference between superclass and subclass?

0 Answers  


What's the access scope of protected access specifier?

0 Answers  


What is sortedset in java?

0 Answers  


String Reverse in Java...!

5 Answers  


Can list be final in java?

0 Answers  


Categories