NEW
Font size
WorksheetsReview Time
Total questions: 15
Worksheet time: 8mins
What do you call a formula or set of steps for solving a problem?
Algorithm
Flowchart
Programming
A program flow that repeats a block of instructions is called:
Initialization flow
Decision flow
Sequential flow
Loop/Repetition flow
Who developed the C programming language?
Dennis Ritchie
Bill gates
Charles Babbage
Bjarne Stroustrup
This is used to indicate the beginning or end of a program
Flowlines
Decision block
Process block
Terminal blocks
This indicates a sequential flow of program logic. The statements of a program are performed from top to bottom in order.
Decision
Repetition
Condition
Sequence
Which flowchart symbol represents decision or comparison?
Rectangle
Diamond
Parallelogram
Arrow
Which type of C data type stores whole numbers without decimal
Float
Double
Int
Char
Which IDE is NOT used for C programming according to the lesson?
Turbo-C
Dev-C++
OnlineGDB
Photoshop
The main() function in C is important because:
It stores constants
It is the starting point of program execution
It declares variables
It performs flowcharting
Which of the following represents the data entered into a program?
Output
Input
Process
Logic
What do you call the part of the program that converts input into output?
Connector
Logic
Process
Constant
A symbol used to terminate any C statement
^ (caret)
: (colon)
, (comma)
; (semicolon)
The function from where C program execution begins.
Main()
main()
Main;
main;
a symbol that tells the compiler to perform specific mathematical, relational or logical manipulations.
Number
Symbol
Operators
Programming
Which escape sequence is used to print a new line in C?
\t
\n
\b
\
