What do you understand by casting in java language?
No Answer is Posted For this Question
Be the First to Post Answer
What are the data types supported by java? What is autoboxing and unboxing?
Explain serialization and deserialization in java?
What will happen inside init() in servlet. my interviewer asked servlet lifecycle. i said "once servlet is loaded in to memory init() will be called which performs servlet initialization " . Again interview asked what values will be initialized . what is difference between init() and init(ServletConfig config).
2 Answers Infinite Computer Solutions, TCS,
Is java 1.7 the same as java 7?
What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }
. What are the differences between constructor and method of a class in Java?
What is difference between Iterator and for loop
What are the five major types of reference sources?
What is onClassLoader in java?
Give me some null interfaces in java?
Nullpointer exception is a very common exception. Why is it not made as a checked exception?
What are the rules for naming an array?