10. Which of the following is not a fundamental datatype?
a) Enum
b) unsigned long int
c) Long int
का
d) double
Answer
Answers
Answer:
D option is correct
Explanation:
Place mark as brainlist
Answer:
Concept:
A data type, often known as type, is a characteristic of data that informs the compiler and interpreter of how the developer intends to utilize the data in computer science and programming. Integer, floating-point, character, and Boolean data types are the most common basic data types supported by computer languages. An expressive, such as a variable or function, is limited in what values it can have by its data type. This data type establishes the meaning of the data, the actions that may be performed on it, and the methods for storing values of that type. An expression's values can be derived from a set of values provided by a data type.
Given:
Of the following, which is not a basic datatype?
a) Enum
b) unsigned long int
c) Long int
d) double
Find:
find the correct option for the given question
Answer:
THe answer is option (a) Enum
An enumerated type is a data type used in computer programming that consists of a set of named values known as elements, members, enumerals, or enumerators of the type. It is also known as an enumeration, enum, factor, or a categorical variable in statistics. Identifiers that function as variables in the language are typically used as the names of the enumerators. A degenerate tag union of unit types can be thought of as an enumerated type. Any of the enumerators may be used as a value for a property that has been defined to have an enumerated type.
#SPJ2