0% found this document useful (0 votes)
68 views3 pages

Python XII random output

Uploaded by

beingaryaka
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
68 views3 pages

Python XII random output

Uploaded by

beingaryaka
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 3

Python Output questions based on randint function from random module:

1. What are the possible outcomes executed from the following code? Also, specify the
maximum and minimum values that can be generated by the randint function.
import random
Score = [25,20,34,56, 72, 63]
Myscore = Score[2 + random.randint(0,1)]
print(Myscore)
(i) 25 (ii) 34 (iii) 20 (iv) None of the above

2. What are the possible outcomes executed from the following code?
import random
import random
City = ["DEL", "CHN", "KOL", "BOM", "BNG"]
for I in range(0,3):
Fly=random.randint(0,1)+ 1;
print(City[Fly],":",end='')
Outputs:
(i) DEL:CHN:KOL:
(ii) CHN:KOL:CHN:
(iii)KOL:BOM:BNG:
(iv)KOL:CHN :KOL:

3. What are the possible outcomes executed from the following code? What are the
minimum and maximum values of Points?
import random
LIMIT = 4
Points = 100 + random.randint(0,LIMIT-1)
for P in range(Points, 99,-1):
print(P,"#",end='')
(i) 103#102#101#100#
(ii) 100#101#102#103#
(iii) 100#101#102#103#104#
(iv) 104#103#102#101#100#

4. What are the possible outcomes executed from the following code? What are the
minimum and maximum values of Number?
import random
LOW=15
POINT=5
for i in range(1,5):
Number=LOW+random.randint(0,POINT-1)
print(Number,":",end='')
POINT-=1
(i) 19:16:15:18:
(ii) 14:18:15:16:
(iii) 19:16:14:18:
(iv) 19:16:15:16:

5. What are the possible outcomes executed from the following code? What are the
minimum and maximum values of MyNum?
import random
Max=5
MyNum = 20 + random.randint(0,Max-1)
for N in range(MyNum,26):
print(N,"*",end='')
(i) 20*21*22*23*24*25
(ii) 22*23*24*25*
(iii) 23*24*
(iv) 21*22*23*24*25

6. In the following program, if the value of N given by the user is 15, what maximum and
minimum values the program could possibly display?
import random
N=int(input("Enter a number: "))
Guessme=random.randint(0,N-1)+10
print(Guessme)

7. In the following program, if the value of N given by the user is 20, what maximum and
minimum values the program could possibly display?
import random
N=int(input("Enter a number: "))
Guessnum=random.randint(0,N-9)+10
print(Guessnum)

8. In the following program, if the value of Guess entered by the user is 65, what will be the
expected output(s) from the following options (i), (ii), (iii) and (iv)?
import random
Guess=int(input("Enter a value : "))
for I in range(1,5):
New=Guess+random.randint(0,I-1)
print(chr(New),end='')
(i) ABBC
(ii) ACBA
(iii) BCDA
(iv) CABD

9. Observe the following program and find out, which option(s) out of (i) to (iv) will not be
the expected output(s) of the program? What will be the minimum and the maximum
value assigned to the variable sequence, when the value of C is 2:
import random
Select=[25,90,30,45]
for C in range(4):
Sequence=random.randint(0,3-C);
print(Select[Sequence],"@",end='')
(i) 45@90@30@25@
(ii) 90@25@90@25@
(iii)30@30@25@25@
(iv)30@30@90@25@

10. Observe the following program and find out, which output(s) out of (i) to (iv) will not be
expected from the program? What will be the minimum and maximum value assigned
to the variable Chance?
import random
Arr=[9,6]
Chance=random.randint(0,1)+10;
for C in range(2):
N=random.randint(0,1)
print(Arr[N]+Chance,"#",end='')

11. What are the possible outcomes executed from the following code? Also, specify the
maximum and minimum values that can be assigned to variable COUNT.
import random
TEXT = "PROGRAMMING"
COUNT = random.randint(0,3)
C=10
while TEXT[C] != 'M':
print(TEXT[C]+TEXT[COUNT]+' * ',end="")
COUNT= COUNT + 1
C = C-1
(i) GG * NR * IA*
(ii) GP * NR * IO *
(iii) OG * NG * IR *
(iv) GR * NO * IG *

You might also like