Explain the transient field modifier?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

What is static variable with example?

0 Answers  


What is class forname?

0 Answers  


how to know the total memory occupied by the objects in the ArrayList(Array list may contain duplicate objects)

0 Answers   Infosys, TCS,


What is the difference between sop and work instruction?

0 Answers  


What is byte code and why is it important to java’s use for internet programming?

0 Answers  






What are the new features in java 8?

0 Answers  


A person says that he compiled a java class successfully without even having a main method in it? Is it possible?

0 Answers  


what is use of business objects?

3 Answers   Tech Mahindra,


How to make a class immutable?

15 Answers   Bosch, TSYS,


How do you replace a string in java?

0 Answers  


What happens when you invoke a thread’s interrupt method while it is sleeping or waiting?

0 Answers  


What will be the output of the program? public class Test { public static void main(String args[]) { ArrayList<String> list = new ArrayList<String>(); list.add("2"); list.add("3"); list.add("4"); list.add("5"); System.out.println("size :"+list.size()); for(int i=0;i<list.size();i++) { list.remove(i); } System.out.println("size after:"+list.size()); } }

5 Answers   Rolta,


Categories