Python Exam 1-Questions With 100% Verified
Answers.
What is the output of: 11.0//2 - ✔✔5.0
Floor division to the nearest whole number
Returns a float
What is the output of: 11//2 - ✔✔5
Return an int
What is the output of: 11/2 - ✔✔5.5
Returns a float
What is the output of: 11/2.0 - ✔✔5.0
What is the output of: 20%2 - ✔✔0
What is the output of: 21%2 - ✔✔1
What is the output of: 11%3 - ✔✔2
x = 'Texas A&M University'
x [-3] = ? - ✔✔i
x = 'Texas A&M University'
x [3] = ? - ✔✔a
x = 'Texas A&M University'
,len(x) = ? - ✔✔20
x = 'Texas A&M University'
x [0:5:2] = ? - ✔✔Txs
It starts at 0 and ends at 5, incremented by 2
x = 'Texas A&M University'
x [4:] = ? - ✔✔s A&M University
x = 'Texas A&M University'
x [:4] = ? - ✔✔Texa
x = 'Texas A&M University'
'A' in x = ? - ✔✔True
Acts as a Boolean, determines if it is in the string
x = 'Texas A&M University'
't' in x = ? - ✔✔True
x = 'Texas A&M University'
'A&M' in x = ? - ✔✔True
x = 'Texas A&M University'
' ' in x = ? - ✔✔True
x = 'Texas A&M University'
' ' in x = ? - ✔✔False
, 2**1+1 - ✔✔3
3* 1**3 - ✔✔3
2*(3+1) - ✔✔4
6+4/2 - ✔✔8.0
Returns a float due to the division
len('Hello world') = ? - ✔✔11
Be sure to count the spaces as values
int(-2.3) = ? - ✔✔-2
float(32) = ? - ✔✔32.0
str(3.14159) = ? - ✔✔3.14159
[0] * 4 = ? - ✔✔[0, 0, 0, 0]
[1, 2, 3] * 3 = ? - ✔✔[ 1, 2, 3, 1, 2, 3, 1, 2, 3]
x=1
y=0
x >= 2 and (x/y) >2 = ? - ✔✔False
Answers.
What is the output of: 11.0//2 - ✔✔5.0
Floor division to the nearest whole number
Returns a float
What is the output of: 11//2 - ✔✔5
Return an int
What is the output of: 11/2 - ✔✔5.5
Returns a float
What is the output of: 11/2.0 - ✔✔5.0
What is the output of: 20%2 - ✔✔0
What is the output of: 21%2 - ✔✔1
What is the output of: 11%3 - ✔✔2
x = 'Texas A&M University'
x [-3] = ? - ✔✔i
x = 'Texas A&M University'
x [3] = ? - ✔✔a
x = 'Texas A&M University'
,len(x) = ? - ✔✔20
x = 'Texas A&M University'
x [0:5:2] = ? - ✔✔Txs
It starts at 0 and ends at 5, incremented by 2
x = 'Texas A&M University'
x [4:] = ? - ✔✔s A&M University
x = 'Texas A&M University'
x [:4] = ? - ✔✔Texa
x = 'Texas A&M University'
'A' in x = ? - ✔✔True
Acts as a Boolean, determines if it is in the string
x = 'Texas A&M University'
't' in x = ? - ✔✔True
x = 'Texas A&M University'
'A&M' in x = ? - ✔✔True
x = 'Texas A&M University'
' ' in x = ? - ✔✔True
x = 'Texas A&M University'
' ' in x = ? - ✔✔False
, 2**1+1 - ✔✔3
3* 1**3 - ✔✔3
2*(3+1) - ✔✔4
6+4/2 - ✔✔8.0
Returns a float due to the division
len('Hello world') = ? - ✔✔11
Be sure to count the spaces as values
int(-2.3) = ? - ✔✔-2
float(32) = ? - ✔✔32.0
str(3.14159) = ? - ✔✔3.14159
[0] * 4 = ? - ✔✔[0, 0, 0, 0]
[1, 2, 3] * 3 = ? - ✔✔[ 1, 2, 3, 1, 2, 3, 1, 2, 3]
x=1
y=0
x >= 2 and (x/y) >2 = ? - ✔✔False