FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Candida has added the variable names needed by her program. She must now assign an initial value to each variable. What is the term for assigning this initial value?
A
Initializing
B
Executing
C
Declaring
D
Encoding
Explanation: 

Detailed explanation-1: -Answer: When a variable is defined, you can also provide an initial value for the variable at the same time. This is called initialization.

Detailed explanation-2: -1. 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.

Detailed explanation-3: -An explicit declaration is a statement in the program that lists variable names and specifies that they are a particular type. An implicit declaration is a means of associating variables with types through default conventions instead of declaration statements.

Detailed explanation-4: -A Boolean expression is a logical statement that is either TRUE or FALSE . Boolean expressions can compare data of any type as long as both parts of the expression have the same basic data type.

There is 1 question to complete.