answersLogoWhite

0

Data conversion is a process where information or code is converted from one type of data to another. This is useful in many circumstances. If one computer uses an ASCII type encoding, and another uses another type of encoding, the two computers will be able to communicate with each other effectively.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Data conversion and loading in database?

By data conversion we mean the data is first processed. The data after processing is ready to store in database. And from the database we can retrieve it for our use.


What are various types of data conversion that can not be handled by compiler?

Data conversion which culminate in loss of data will usually lead to the generation of warning messages. Eg: from float to int. These conversions should be explicit. Also conversion between two different objects is only possible if there is a function specifying the conversion method.


What is the syntax of data conversion in c?

ghanta


What is the purpose of data conversion software?

The purpose of data conversion software is to convert data on a computer from one format to another. One would feed data into a program and it would be converted so trends and information can be taken from it.


What is the purpose of file conversion?

helps store data


What is an example of a data type conversion function?

toReal


Can access be used as a data conversion engine?

YES


What do you mean by sample and holds in DA and AD converters?

DA means conversion of digital data into analogous and AD means conversion of analogous data into digital one.


What are the types of Data Conversion Services?

Data Conversion typesHTML ConversionSGML ConversionXML ConversionFile ConversionDocument ConversionWeb PublishingOCR Conversion


A form is the appropriate choice if it is necessary to print data?

It is wrong. A repofrt is the appropriate choice if it is necessary to print data.


Is a form the appropriate choice if it is necessary to print data?

It is wrong. A repofrt is the appropriate choice if it is necessary to print data.


What is implicit and explicit data type conversion in C programming?

explicit type conversion is done by compile automatically for example: int x; float y=10.4545 // to convert the value of float into int type we use x=y; //automatic conversion while if we force to convert one data type to another then it is called implicit for example: int x; float y=10.4545 // to convert the value of float into int type we use x= (int)y; //forced conversion