Question
1. Which of the following structures will test a condition and follow one code path if the test is true, or another path if the
1. Which of the following structures will test a condition and follow one code path if the test is true, or another path if the test is false?
a. test statement
b. test, else statement
c. if, else statement
d. if statement
2. Which of the following operators will cause an expression to return True, only if both sub-expressions are true?
a. also
b. and
c. not
d. both
3. Because it is space-delimited, Python does not allow decision structures to be nested within other decision structures. This differs from other languages that use curly-brackets and do allow this. T/F
4. In Python, the following statement tells the interpreter to 'do nothing'. It is often used during debugging and development as a placeholder within a control structure.
a. continue
b. noop
c. pass
d. none
5. Similar to Perl; user-defined functions in Python may only accept one argument. Both Perl and Python allow you to pass a list as an argument to get around this limitation. T/F
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started