Podcast
Questions and Answers
What is the command used to display numbers and text on the screen or terminal?
What is the command used to display numbers and text on the screen or terminal?
- show()
- print() (correct)
- display()
- present()
What can be used to store information and values so that it can be used later? in other words, a Box that can be used to store information in our computer's memory.
What can be used to store information and values so that it can be used later? in other words, a Box that can be used to store information in our computer's memory.
- container
- holder
- reservoir
- variable (correct)
What kind of loop is used when the number of repetitions is known?
What kind of loop is used when the number of repetitions is known?
- while loop(conditional loop)
- for loop(counting loop) (correct)
- infinite loop
- do-while loop
Which loop runs as long as a condition is still true?
Which loop runs as long as a condition is still true?
Which of the following would be an example of a Boolean variable?
Which of the following would be an example of a Boolean variable?
What is the value printed when executing the given code?
What is the value printed when executing the given code?
What is a input()?
What is a input()?