Informatics Practices
Related Questions
Which of the following is not a decision-making statement?
- if-elif statement
- for statement
- if-else statement
- if statement
The symbol used to end the if statement:
- Semicolon (;)
- Hyphen ( - )
- Underscore ( _ )
- Colon (:)
What does the following code print to console?
if True: print (101) else: print (202)- 101
- 202
- 303
- 102
Which of the following is not a loop statement in Python?
- do-while
- while
- for
- All of these