Can we declare a static variable inside a method?


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

Post New Answer

More Core Java Interview Questions

What is the r character?

0 Answers  


What is palindrome in java?

0 Answers  


How multi processing is achieved in JAVA?

5 Answers   BMC,


Given: 10. interface A { void x(); } 11. class B implements A { public void x() { } public voidy() { } } 12. class C extends B { public void x() {} } And: 20. java.util.List list = new java.util.ArrayList(); 21. list.add(new B()); 22. list.add(new C()); 23. for (A a:list) { 24. a.x(); 25. a.y();; 26. } What is the result? 1 Compilation fails because of an error in line 25. 2 The code runs with no output. 3 An exception is thrown at runtime. 4 Compilation fails because of an error in line 20.

3 Answers  


What are Transient and Volatile Modifiers?

3 Answers   SAP Labs, TUP Manila,






How do you differentiate abstract class from interface?

0 Answers  


What is the purpose of a volatile variable?

0 Answers  


please send me hr interview questions in it industry

0 Answers  


What is ascii code?

0 Answers  


Difference between method overloading and method overriding in java ?

0 Answers  


Why java is considered as platform independent?

0 Answers  


if num=687; U have to get num=6+8+7;

4 Answers   CMC,


Categories