FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WHAT IS PROGRAMMING

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
An extra piece of information passed to a function to customize it for a specific need
A
Value
B
Variable
C
Parameter
D
None of the above
Explanation: 

Detailed explanation-1: -Parameter. An extra piece of information passed to a function to customize it for a specific need.

Detailed explanation-2: -A parameter is a piece of information that is passed to a function to allow it to complete its task. A parameter can be any one of the four data types: handle, integer, object, or string.

Detailed explanation-3: -A parameter is a special kind of variable used in a function to refer to one of the pieces of data provided as input to the function. These pieces of data are the values of the arguments with which the function is going to be called/invoked.

Detailed explanation-4: -More specifically the answer is “actual parameter”. It passes the value to the function.

There is 1 question to complete.