Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is a stream? what are the different types and classes
of Streams?

Answers were Sorted based on User's Feedback



What is a stream? what are the different types and classes of Streams?..

Answer / janet

A stream is an abstraction that either produces or consumes
information.There are two types of Streams and they are :
ByteStreams: provide a convinient means for handling input
and output of bytes.
Character Streams: provide a convinient means for handling
input and output of characters.
Byte Streams classes: Are defined by using two abstract
classes ,namely InputStream and OutputStream.
Character Streams classes : Are defined by using two
abstract classes ,namely Reader and Writer.

Is This Answer Correct ?    1 Yes 2 No

What is a stream? what are the different types and classes of Streams?..

Answer / kumar

Most of the programs work with external data stored either
in local files or coming from other computers on the
network. Java has a concept of working with so-called
streams of data. After a physical data storage is mapped to
a logical stream, a Java program reads data from this
stream serially - byte after byte, character after
character, etc. Some of the types of streams are byte
streams (InputStream, OutputStream) and character streams
(Reader and Writer). The same physical file could be read
using different types of streams, for example,
FileInputStream, or FileReader.

There are different types of data, and hence different
types of streams.

Here's the sequence of steps needed to work with a stream:
1. Open a stream that points at a specific data
source: a file, a socket, URL, etc.
2. Read or write data from/to this stream.
3. Close the stream.

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Core Java Interview Questions

is JVM platform dependent or independent..?

11 Answers   IBM, Tech Mahindra,


how many access specifiers are available in java

11 Answers  


What does exclamation mean in java?

0 Answers  


What is a final class in java?

0 Answers  


Why do I need to declare the type of a variable in java?

0 Answers  


Why is stringbuffer thread safe?

0 Answers  


Why all programming languages have main as a execution starting point?

4 Answers  


What is a numeric string?

0 Answers  


when we create singleton design then we create private constructtor..so how JVM take private constructor to make object..but it's private..

1 Answers   Ness Technologies,


What is r * in math?

0 Answers  


give an example for encapsulation?

0 Answers   Aspire,


What is the difference between private & public & friendly classes?

0 Answers  


Categories