How many types of array are there?


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

Post New Answer

More Core Java Interview Questions

How to convert String into primitive datatype.

6 Answers  


class A{ some variables; public void a()throws Excepion1,Exception2{....} } class B extends A{ variables... public void a()throws E2,E3{.....} } Qns: here override of methods occurs or not,ore else wil give any compilation error or run properly..plz tell me briefly whts happening with the above codes....

4 Answers   Quinnox,


What is polymorphism java example?

0 Answers  


33. try { 34. // some code here 35. } catch (NullPointerException e1) { 36. System.out.print(”a”); 37. } catch (RuntimeException e2) { 38. System.out.print(”b”); 39. } finally { 40. System.out.print(”c”); 41. } What is the result if a NullPointerException occurs on line 34? 1 c 2 a 3 ab 4 ac

5 Answers  


write a code, we have two thread, one is printing even no and other print the odd no.

1 Answers   Global Logic,






What is array initialization in java?

0 Answers  


What is class and its types?

0 Answers  


Is void a return type?

0 Answers  


What is use of super keyword in java?

0 Answers  


what are three ways in which a thread can enter the waiting state? Or what are different ways in which a thread can enter the waiting state? : Java thread

0 Answers  


Which java.util classes and interfaces support event handling?

2 Answers  


what is the difference between process and thread? : Java thread

0 Answers  


Categories