What is the r character?
No Answer is Posted For this Question
Be the First to Post Answer
Which types of exceptions are caught at compile time?
What is the purpose of static methods and static variables?
What is the size of a string in java?
Can we override data members in java?
Can try statements be nested?
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 mean by String and StringBuffer? What is mean by Methooverriding and Overloading?
What is nested interface?
Explain why wait(), notify() and notifyall() methods are in object class rather than in the reading class?
What access modifiers can be used for methods?
What is a file pointer?
what are the purposes of native, transiant key words?