Core Java Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 264 Page Views: 

What is the ObjectInputStream?



Posted By: Avi Date: 4 November 2010 03:43:49 PM
 Answer:

It is a class allows you to read objects directly from a stream


Posted By: avibtech


Date: 4 November 2010 03:43:49 PM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image xK9ZhK
Related Questions
Core Java : Why java is said to be pass-by-value ?

Why java is said to be pass-by-value ?

When assigning an object to a variable, we are actually assigning the memory address of that object ....
Category: Core Java Date: 11/5/2010 7:20:51 AM
Core Java : What happens if a try-catch-finally statement does not have a catch clause to handle an exception that is thrown within the body of the try statement?

What happens if a try-catch-finally statement does not have a catch clause to handle an exception th....

The exception propagates up to the next higher level try-catch statement (if any) or results in the ....
Category: Core Java Date: 11/5/2010 6:36:55 AM
Core Java : Does garbage collection guarantee that a program will not run out of memory?

Does garbage collection guarantee that a program will not run out of memory?

No, It clears the memory from objects without refrences.
Category: Core Java Date: 11/5/2010 5:42:47 AM
Core Java : What is HashMap and Map?

What is HashMap and Map?

Map is Interface and HashMap is class that implements that.
Category: Core Java Date: 11/5/2010 5:31:52 AM
Core Java : Why ArrayList is faster than Vector?    

Why ArrayList is faster than Vector?    

Because Vector is synchronized and synchronization reduces the performance.
Category: Core Java Date: 11/5/2010 4:58:51 AM