100%
The Range(1,10,3) produces the values
A. 1,4,7,10
B. 1,4,7
C. 1,3,5,7,9
D. 1,10,3 - ANSWERB. 1,4,7
How many asterisks would be printed by these two code fragments?
A. 12 in both cases
B. 6 in both cases
C. 12 in the one on the left; 6 in the one of the right
D. 6 in the one on the left; 4 in the one on the right - ANSWERC. 12 in the one on
the left; 6 in the one of the right
If is_prime is a function that identifies whether its argument was prime, what would
this short function return?
A. The value 2 only
B. The value 7 only
C. All of the small primes in a list: [2,3,5,7]
D. One small prime, and a different one each time it is called. - ANSWERA. The
value 2 only
I wish to catch invalid input values outside the range of 1 to 5, inclusive. The test to
identify a bad input would be:
A. value < 1 and value > 5
B. value < 1 or value > 5
C. 1 > value > 5
D. value < 1 and > 5 - ANSWERB. value < 1 or value > 5
A series of inputs will arrive at the keyboard, ending with an empty line. Assuming all
of these inputs are whole numbers, compute their sum. - ANSWERtotal = 0
line = input()
while line != '':
total = total + int(total)
line = input()
Given a list of integers in nums display the first value greater than 60 and its position
in that list. - ANSWERposition = 0
while nums[position] <= 60:
position = position + 1