answersLogoWhite

0

What is the decimal data type?

Updated: 4/28/2022
User Avatar

Wiki User

8y ago

Best Answer

In theory, it a continuous numerical variable. In practice, however, it is made discrete by the limitations of recording it - either by hand or by computer.

User Avatar

Wiki User

7y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the decimal data type?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

If a field has a Number data type you can change the property to Fixed to set a fixed number of decimal places?

Decimal Property


When you use decimal which type of data is it?

Decimal numbers are real numbers. In C and C++ we use the float, double and long double data types to represent real numbers.


What type of data would be best aligned using a decimal tab stop?

A column of numbers containing a decimal point, like prices.


Is data related to decimal?

No, data is information and decimal is a fraction out of a power of ten.


What is a valid variable data type?

1. If its natural or integer numbers- Integer(Int) data type. 2. If it consists of decimal or fraction part- Double or float data type. 3. If it has a single letter or sign- Character(Char) data type. 4. If its got many words(alpha-numerical)- String data type. 5. If the result has to be "true" or "false"- Boolean data type.


Abstract data type that store a whole numbers?

All data types can be used to store a whole number, even the data types that can store a decimal number.


What is the default data type for Visual Basic?

A variable has a data type such as integer, string, double. A data type tells the variable to only store values that are a particular data type, so you can only store numbers without decimal points in an integer variable, and only characters such as "ABCD" in a string variable.


If a field has a number data type you can change the format property to fixed to set a fixed number of decimal places?

field size


Is the currency data type accurate up to 4 digits on the right side of the decimal point?

The answer depends on the data source. Exchange rates are usually accurate to 6 significant digits.


What is default values of different primitive data types?

in integral data types default value=0 in decimal type default value is 0.0 in boolean default value is fa


What data type would you use for the value 12.231?

Double/Decimal- Used to store number with decimal placesFor ExampleDim a As Doublea = 12.64lblDisplay.Text = "The Double value store in the variable is" & aEnd Sub


Loss of precision error in java?

A loss of precision error occurs when you use a variable of a data type that holds more decimal values than the type of the variable you are converting/inserting to.