Name few "optional" classes introduced with java 8 ?
Can I learn java without any programming experience?
To what value is a variable of the Boolean type automatically initialized?
What is palindrome in java?
Is java is a fully object object oriented language?
Which is better arraylist or vector?
Can java object be locked down for exclusive use by a given thread?
What is early binding and late binding in java?
What do you mean by flow of struts?
Is java platform independent?
What is a method in coding?
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 purpose of declaring a variable as final?