FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
What is the variable name in this Pseudocode?STARTSEND ‘Whats your name?’ TO DISPLAYRECEIVE agE FROM KEYBOARD (INT)
A
age
B
Age
C
AGE
D
agE
Explanation: 

Detailed explanation-1: -Variables can store all 5 different types of data in pseudocode. Boolean, Integer, Character, String, Float/Decimal/Real.

Detailed explanation-2: -Variable Assignments Assigning a value to a variable is indicated in pseudocode using an arrow symbol (←). The arrow points from the value being assigned towards the variable it is being assigned to. The following line of pseudocode should be read as ‘a becomes equal to 34’.

Detailed explanation-3: -That line of pseudocode means “displays the value of expression followed by a space.” For example, you might see pseudocode like this: DISPLAY ("Howdy") DISPLAY ("Neighbor!") That represents code that outputs: “Howdy Neighbor! “

There is 1 question to complete.