answersLogoWhite

0


Best Answer

A data stram can be thought of as a stream of data. It's rather confusing, agreed. Think of a data stream as a series of 1's and 0's that comprise information based on the order in which they appear.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What exactly is a data stream?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a stream in the data file handling?

A Stream is a sequence of bytes.


What are the release dates for Data Stream - 2008?

Data Stream - 2008 was released on: USA: 17 February 2008 (Hollywood, California)


What is the term for the main stream and tributaries of a river?

exactly what you said the main stream and tributaries


What is stream in java?

i thinkflow of data from one place to other place is called a stream...


How exactly does a mobile data terminal operate?

How exactly does a mobile data terminal operate?


Which data type is used in order to fetch stream of data from network or file?

char


Which data stream refers to the standard error output?

stderr


What data has to be collected in the field for stream hydrographs to be drawn?

pene


What is data stream mining?

ata Stream Mining is the process of extracting knowledge structures from continuous, rapid data records. A data stream is an ordered sequence of instances that in many applications of data stream mining can be read only once or a small number of times using limited computing and storage capabilities. Examples of data streams include computer network traffic, phone conversations, ATM transactions, web searches, and sensor data. Data stream mining can be considered a subfield of data mining, machine learning, and knowledge discovery.In many data stream mining applications, the goal is to predict the class or value of new instances in the data stream given some knowledge about the class membership or values of previous instances in the data stream. Machine learning techniques can be used to learn this prediction task from labeled examples in an automated fashion. In many applications, the distribution underlying the instances or the rules underlying their labeling may change over time, i.e. the goal of the prediction, the class to be predicted or the target value to be predicted, may change over time. This problem is referred to as concept drift.


How does a firewall reassemble a data stream that has been divided into packets?

The receiving computer uses each packets identification number to reassemble in the correct order the packets that make of the data stream.


What transmission is data sent in a constant stream of frames?

synchronous transmission. In a asynchronous transmission, data is sent as individual data bytes


What is the Streaming data in the context of C plus plus refers to what?

Streams provide a unified, generic, input/output mechanism in C++. They allow a consistent method of inserting or extracting data from any physical storage medium that supports a stream implementation, such as a filestream or a stringstream, without the need to know the details of that medium. All streams operate in exactly the same way. To extract data from an input stream, use the extraction operator (>>). To insert data into a stream, use the insertion operator (<<). Some streams are omni-directional (input-only or output-only), while others are bi-directional (both input and output).