What is the static keyword?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the importance of join() method in thread class?
What is the arguement of main method?
What is identifier give example?
when i write string s1="java"; in one program(application) and string s2="java"; in another application on the same jvm will both objects s2,s2 will refer to same memory location where "java" is stored in string pool.
Difference between Choice and a List?
What is collection api?
What is the use of set in java?
Can we catch more than one exception in single catch block?
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
What do you mean by constructor?
explain me with a code snippet about the generation and handling of null point exceptions.
How many types of java are there?