answersLogoWhite

0


Best Answer

There is no level of data that cannot be organised to form an array. Although it is not possible to form an array of references, a reference has no address of its own and cannot be regarded as data. It is a programming tool, nothing more.

User Avatar

Wiki User

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

Wiki User

11y ago

Nominal.

This answer is:
User Avatar
User Avatar

Zaid abdul-salaam

Lvl 1
2y ago
Why?

Add your answer:

Earn +20 pts
Q: What level of raw data CANNOT be re-organized to form an array?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Application of array in data structure?

That rather depends on the underlying type. For any given type T, an array of type T is user-defined if T is user-defined, otherwise it is built-in. For example: #include<string> // required to use std::string std::string s[42]; // user-defined array int i[42]; // built-in array Here, s is a user-defined array because std::string is a user-defined type, whereas i is a built-in array because int is a built-in type.


What is array Explain with syntax?

an array is a collection of the same data type.


What is the requirement of an array?

The two main requirements of an array are: * Its size should be specified while declaration. This size cannot change. * It can contain only homogeneous elements as its values. i.e., for example an array can contain either all int values or all char values etc. It cannot take values of different data types


What is the midpoint in a data array?

Median.


What is string array?

A string array is an array whose contents are strings.An array is when you use a single variable names to store different data items. The data items are distinguished by a number (sometimes by more than one).A string is a data type used to store texts. It may contain letters, digits, or other symbols.A string array is an array whose contents are strings.An array is when you use a single variable names to store different data items. The data items are distinguished by a number (sometimes by more than one).A string is a data type used to store texts. It may contain letters, digits, or other symbols.A string array is an array whose contents are strings.An array is when you use a single variable names to store different data items. The data items are distinguished by a number (sometimes by more than one).A string is a data type used to store texts. It may contain letters, digits, or other symbols.A string array is an array whose contents are strings.An array is when you use a single variable names to store different data items. The data items are distinguished by a number (sometimes by more than one).A string is a data type used to store texts. It may contain letters, digits, or other symbols.

Related questions

Concept of data independence?

Data independence refers to the ability to make changes to the data storage structure without affecting the applications that use the data. There are two types of data independence: logical data independence, which insulates applications from changes to the logical structure of the data, and physical data independence, which shields applications from changes to the physical storage structure of the data. This concept is a key aspect of database design and helps to promote flexibility, scalability, and maintainability of data systems.


What level of raid does parity error checking occurs when data is written across the disk array?

RAID 3


What is the improved array definition?

An array is used to store data having the same data type.


Application of array in data structure?

That rather depends on the underlying type. For any given type T, an array of type T is user-defined if T is user-defined, otherwise it is built-in. For example: #include<string> // required to use std::string std::string s[42]; // user-defined array int i[42]; // built-in array Here, s is a user-defined array because std::string is a user-defined type, whereas i is a built-in array because int is a built-in type.


What data type can be used to represent 1000000 elements in an array?

An array.


What is array Explain with syntax?

an array is a collection of the same data type.


What is the difference between an array and structure?

An array is a collection of related data elements of same type.Structure can have elements of different types.An array is a derived data type.A structure is a programmer-defined data type.A struct can contain multiple data types, whereas an array can not.


What is the requirement of an array?

The two main requirements of an array are: * Its size should be specified while declaration. This size cannot change. * It can contain only homogeneous elements as its values. i.e., for example an array can contain either all int values or all char values etc. It cannot take values of different data types


What is need to array?

Because using array you can easily access the data required


What is the midpoint in a data array?

Median.


What is an associative array?

An associative array is one of a number of array-like data structures where the indices are not limited to integers.


How 2 write c code of array data structure?

An example: int array [10]; yaaa this is write but for a simple programs on array and all data structure visit codingdatastructure.blogspot.com