answersLogoWhite

0

What is data and define its type?

Updated: 8/20/2019
User Avatar

Wiki User

10y ago

Best Answer

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

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

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

What are user defined data types?

Actually user defined data type made by user like array,structure,union,pointer. the data type which is define by user or programer according to his need is called user define data type and also called the programer define data type........


How can define date data type in c structure?

struct tm can be an example.


In java difference between classes and object in tabluar form?

A class is a template to create objects. You define the general behavior of a new data type in a class; then you create objects as specific variables of the new type. In other words, you can consider the class as a data type.A class is a template to create objects. You define the general behavior of a new data type in a class; then you create objects as specific variables of the new type. In other words, you can consider the class as a data type.A class is a template to create objects. You define the general behavior of a new data type in a class; then you create objects as specific variables of the new type. In other words, you can consider the class as a data type.A class is a template to create objects. You define the general behavior of a new data type in a class; then you create objects as specific variables of the new type. In other words, you can consider the class as a data type.


Difference between built in data type and user-defined datatype?

A built in data type is a framework's native data type. By default you'd probably have some built in generic data types, such as integer, string, boolean and so on. In the other hand sometimes you can extend the framework's data types, by programminga user-defined data type. In this data type you have to define it's behaviour and structure, and once defined, you can use it the same way you use the default data types. In PostgreSQL or Oracle, you can define data types. You can read about it on their webs.


Why cannot initialize data member within class?

A class is a type. Classes don't do anything except define the type. You have to instantiate an object of the type in order to actually do anything, including initialising data members. However, the class can define how a data member is initialised. The most efficient method of initialising class members if via the class constructor initialisation list.


What access point feature allows an admin to define what type of data can enter wirless network?

authentication


What is judgmental data?

define judgmental data


What is the definition of datatypes in programming?

A data type defines how data is represented. All data is obviously represented by a sequence of binary values, however, the data type determines how that value is to be interpreted by the language compiler. Object oriented programming languages use classes to define data types, which not only defines the representation of data but also which operations are valid for the type.


What are the different user define data typesexplain with example?

what are the different user define data types explain with example


WHAT does tags do within HTML?

The tags in an HTML document provide a semantic layout for the file. They define what the data is. For instance, the tags define a paragraph.These tags aren't about how the data looks. Instead, the define what the data is.


What access-point feature allows a network administrator to define what type of data can enter the wireless network?

Don't cheat!


Is address a user-defined data type?

You can define a data-type called 'address': 1. typedef void *address; 2. typedef struct address { char country [32]; char state [32]; ... } address.