2027) Questions & Answers {Grade A}
100% Correct
Iteration - correct answer same operation to be repeated based on value of a condition
Invocation - correct answer invoking specific sections of code as they are needed
C program consists of ______ or ______ functions - correct answer one, more
Is a C language description of an algorithm - correct answer function
Standard library of functions has ______ header files and many other functions -
correct answer 15
,Simple C program as a single function - correct answer main( )
Causes some specific action to be performed when the program is executed - correct
answer executable statement
All executable statements must have this - correct answer ;
Displays all data types - correct answer printf( )
Sequence of one or more operands separated by operators - correct answer
expression
Expressions are evaluated according to the _____________ and ___________________ of the
operand used - correct answer precedence, associativity
, Every variable must be this (2) - correct answer declared with data type, used after
delcared
Inform the compiler of a function's valid variable names - correct answer declaration
statements
Can be performed using assignment statements or mathematical functions - correct
answer Arithmetic calculations
The assignment symbol, ______, is an operator - correct answer =
C provides the +=, -=, *= and /= assignment operators - correct answer True
The increment operator, ++, adds ____ to a variable - correct answer 1