Which of the following is not a datatype?
A) Integer
B) Float
C) String
D) Loop
Answer:
D) Loop
Explanation:
In programming languages, “Loop” is not a data type. It’s a control structure used for repeating a set of instructions or statements. Data types typically represent the kind of values that variables can hold, such as integers (int), floating-point numbers (float), and text (string).