What is array command?
No Answer is Posted For this Question
Be the First to Post Answer
What is the lifetime and scope of a variable?
we cannot create an object of interface but we can create a variable of it
What is an object in java?
When does an object becomes eligible for garbage collection in java?
What are the restriction imposed on a static method or a static block of code?
Why is java called java?
Is overriding possible in java?
is there any function in java to make the text to blink?
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 data type?
What is main difference between variable and constant?
How does regex work?