What programs use java?
No Answer is Posted For this Question
Be the First to Post Answer
Is java written in c?
What is double data type?
How many bytes are a float?
Differentiate between the constructors and methods in java?
In Inheritance if we are implementing Multi level inheritance and all class having same name of variable and now i want to access each class variable and how it is possible?
What is difference between static variable and global variable?
Explain list interface?
How hashset works internally in java?
Can inner class be public in java?
What is command line used for?
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
How many objects are created when we create String class object using new operator?