answersLogoWhite

0

What data type is age?

Updated: 12/23/2022
User Avatar

Wiki User

11y ago

Best Answer

integer data type

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Syth Craqed

Lvl 2
3y ago

integer data type

This answer is:
User Avatar

Add your answer:

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

What typeof data type would be best to store an age?

integer


Which data type do you use to store Age of all 100 students of BCA-II semester in your Learning Centre?

Int data type. Struct stud{ int age; }; main() { struct stud s[100]; int i; for(i=0;i<100;i++) { s[0].age-->gives age of 1st student.


What is meta data in database management?

meta data can be define as the data about data....data is the known facts which can be recorded and altered...and the info. about the data is called meta data...example :-Suppose in a student table student name,age,sex,class,subject,stream all are the data of the student table and the data about these data(name,age,sex, etc...) like what type of data whether it is a integer or string or char and what is the range like age should be with in o-20 like the all are called Meta Data.......


What is data and define its type?

Data is information. Data type defines the type of data - integer, character etc


What data type is middle initial?

what data type is Middle initial


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.


Is Age nominal interval or ordinal data?

Age is none of the items listed. Age is ratio data.


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.


What is boolean data type?

what is boolean data type


Suggest the data type that can be used for initializing alphanumeric elements in a c programmed array .Also tell you the compiler that can understand the data type.?

Data Type : - It is used to identify the type of data. 'C' Language has a large no of data type, Thus it is also known by rich data type language: Data type are generally classified in three group: 1: Fundamental data type 2 Derived Data Type : 3 Use defined data type; 1 Fundamental data type: Fundamental data type includes i) The int data type: The data type int can store integer value only for eg. 14, 45, 78 declaration: int a,b; here we can store any value in variable a & b. ii) Char Data Type : The data type char can store character value only which is enclosed with single quote for e.g. 'c' declaration : char x = 'c' iii) Float Data Type:


What indicates the type of data that can be stored in field in Access?

Data Type indicates the type of data that can be stored in a field.


What is the difference between data and variable?

data type refers to the kind of value that is held by a particular variable. For ex: an int variable contains integer value, a string holds a alpha numeric value etc. variable refers to the name of a value using which we can refer to this value. Ex: public int age = 28; here int is the data type and age is the variable.