Podcast
Questions and Answers
Computer program is a set of instruction given to the computer to perform a specific task. It also known as ______.
Computer program is a set of instruction given to the computer to perform a specific task. It also known as ______.
statements
A control structure is a programming construct which affects the flow of the execution of a program. A ______ structure is also known as a straight line path because it executes in sequential order without any jumps.
A control structure is a programming construct which affects the flow of the execution of a program. A ______ structure is also known as a straight line path because it executes in sequential order without any jumps.
sequential
Python provides following selection statements: if statement, if-else statement and if-elif-else ______.
Python provides following selection statements: if statement, if-else statement and if-elif-else ______.
statement
The if-else statement is used to evaluate whether the given statement is ______ or false.
The if-else statement is used to evaluate whether the given statement is ______ or false.
Signup and view all the answers
The while loop repeats a block of statements for a given number of times, until the condition is ______.
The while loop repeats a block of statements for a given number of times, until the condition is ______.
Signup and view all the answers