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.
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.
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.
ghanta
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.
helps store data
toReal
YES
DA means conversion of digital data into analogous and AD means conversion of analogous data into digital one.
Data Conversion typesHTML ConversionSGML ConversionXML ConversionFile ConversionDocument ConversionWeb PublishingOCR Conversion
It is wrong. A repofrt 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.
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