write the hierarchy of component class?
What is space character in java?
import java.io.*; class Demo { public static void main(String args[]) { File f=new File("1234.msg"); String arr[]=f.list(); System.out.println(arr.length); } }
What happens if a constructor is declared private?
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
Can you call a method in a method?
What is sortedset in java?
Why constructor has no return type?
What is java class writing rules?
why abstract class will have a constructor?
What is a parameter in simple terms?
How to find the length and capacity of a string buffer ?
What does math floor () do?