Can I learn java without any programming experience?
No Answer is Posted For this Question
Be the First to Post Answer
Can you explain the difference b/n abtract and interface with a good example,?In what cases we have use abtract and what case interface?
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 is the difference between overloading and overriding a function?
13 Answers eG Innovations, Infosys, TCS,
Why synchronization is important?
Can we create a class inside a class in java?
What is the list interface?
Can java list be null?
Difference between final and effectively final ?
What about instanceof operator in java?
Can you instantiate the math class in Java?
Where are global variables stored?
Explain the scope of a variable.