answersLogoWhite

0

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.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How do you insert a hyperlink in Access?

There is a hyperlink data type. If you set a field as that data type, such as for a website, then you can type in a valid address into the field and it will be stored as a hyperlink.There is a hyperlink data type. If you set a field as that data type, such as for a website, then you can type in a valid address into the field and it will be stored as a hyperlink.There is a hyperlink data type. If you set a field as that data type, such as for a website, then you can type in a valid address into the field and it will be stored as a hyperlink.There is a hyperlink data type. If you set a field as that data type, such as for a website, then you can type in a valid address into the field and it will be stored as a hyperlink.There is a hyperlink data type. If you set a field as that data type, such as for a website, then you can type in a valid address into the field and it will be stored as a hyperlink.There is a hyperlink data type. If you set a field as that data type, such as for a website, then you can type in a valid address into the field and it will be stored as a hyperlink.There is a hyperlink data type. If you set a field as that data type, such as for a website, then you can type in a valid address into the field and it will be stored as a hyperlink.There is a hyperlink data type. If you set a field as that data type, such as for a website, then you can type in a valid address into the field and it will be stored as a hyperlink.There is a hyperlink data type. If you set a field as that data type, such as for a website, then you can type in a valid address into the field and it will be stored as a hyperlink.There is a hyperlink data type. If you set a field as that data type, such as for a website, then you can type in a valid address into the field and it will be stored as a hyperlink.There is a hyperlink data type. If you set a field as that data type, such as for a website, then you can type in a valid address into the field and it will be stored as a hyperlink.


What defines a data type?

the type of data which we store in a variable.. example: int a=10; /*here a is variable (data) which is of type int and stores a value 10.*/


What are the components of a variable?

A variable typically consists of a name, a data type, a value, and a memory location where the value is stored. The name is used to reference the variable in the code, the data type defines the type of data the variable can hold, the value is the actual data stored in the variable, and the memory location is where the value is stored in the computer's memory.


Which data type can store any data?

There is no such data type. However, when we use user-defined data types of our own type, then that type of data can be stored in a variable. So as a term, you may say that user-defined data type can store any data. As the data-type used in any variable will be depending upon us.


Which is the valid data type in access?

number


What is the difference between Variable and Data Type of Variable?

Let's look at an example. int a = 1; Here our variable is 'a' which is of type 'int'


What is the difference between continuous and discontinuous and discrete variables?

A continuous variable is a variable for which all possible representations are valid. A discrete variable is a variable for which only some representations are valid. Discontinuous variables apply to data sets where values recorded during particular periods are missing from the set.


What type of data can line graphs display?

Line graphs are used to display data to show how one variable (the Responding variable) changes in response to another variable (the Manipulated variable).


Which of the following is not a variable data type real integer number or string?

FILE, struct stat and struct tm are some examples.


How much data can a global variable contain?

This question is meaningless. 'Variable' is not a type, and scope does not determine how much 'data' something can store.


What are the valid type of data that the main can return in c language?

Type 'int'


Why should you declare variables?

Declaring of a variable in Java refers to creating a variable of a particular data type. Example: int x = 10; Here we are declaring an integer variable X and initializing it to a value of 10