FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
An identifier is the ‘name’ given to a variable. For example:distanceToSchool = 10What is the value of the variable?
A
10
B
=
C
distanceToSchool
D
None of the above
Explanation: 

Detailed explanation-1: -"Identifiers” or “symbols” are the names you supply for variables, types, functions, and labels in your program. Identifier names must differ in spelling and case from any keywords. You can’t use keywords (either C or Microsoft) as identifiers; they’re reserved for special use.

Detailed explanation-2: -A constant is a data item whose value cannot change during the program’s execution. Thus, as its name implies – the value is constant.

Detailed explanation-3: -Definition: Pseudocode is an informal way of programming description that does not require any strict programming language syntax or underlying technology considerations. It is used for creating an outline or a rough draft of a program.

Detailed explanation-4: -Pseudocode is real, authentic code. False.

There is 1 question to complete.