can we take more than one null values for Unique
constraints.
What is method overloading in JAVA? Why is it not present in C ?
0 Answers Akamai Technologies,
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 io stream in java?
What is the difference between JDBC 1.0 and JDBC 2.0?
What is meant by throwing an Exception?
What is finally and finalize in java?
What is class array in java?
Is array dynamic in java?
How do you compare two strings lexicographically?
How do we make a class serialize?
Which one of the following suits the description of a string better: derived or primitive?
What is Java Shutdown Hook?