FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Can hold an unknown number:
A
variable
B
string
C
integer
D
array
Explanation: 

Detailed explanation-1: -The INTEGER data type stores whole numbers that range from-2, 147, 483, 647 to 2, 147, 483, 647 for 9 or 10 digits of precision.

Detailed explanation-2: -In an algebraic equation, a variable is a symbol (usually a letter) that represents an unknown value.

Detailed explanation-3: -Integer Data Type An integer type variable can store zero, positive, and negative values without any decimal. In C language, the integer data type is represented by the ‘int’ keyword, and it can be both signed or unsigned. By default, the value assigned to an integer variable is considered positive if it is unsigned.

There is 1 question to complete.