Question
1) Which of the following list methods will remove the element from the list and deleted element is not available after the operation is performed?
1) Which of the following list methods will remove the element from the list and deleted element is not available after the operation is performed?
a) delete
b) pop
c) remove
d) del
2)
For the following code: astr = 'Hello Bob' istr = 0 try: istr = int(astr) except: istr = -1
What will the value be for istr after this code executes?
a) false
b) It will be the 'Not a number' value (i.e. NaN)
c) It will be a random number depending on the operating system the program runs on
d) -1
3)
What is the value of the following expression:
95%10
a) 5
b) 0
c) 9
d) 10
4) What is a reason why Phython "tuple" is better than "list"?
a) Takes up less computer resources to store.
b) Tuple is mutable.
c) Tuples have many more methods than lists.
5)
Which of the following tuples is greater than x in the following Python sequence? x = (3, 2, 9) if ??? > x : ...
a) (1, 0, 20)
b) (2, 15, 330)
c) (0, 1000, 2000)
d) (4, 0, 3)
d) Tuples are much more flexible than the list
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