Computer Science
Assertion (A): The random module is a built-in module to generate pseudorandom variables.
Reasoning (R): The randrange() function is used to generate a random number between the specified range in its parameter.
- Both A and R are true and R is the correct explanation of A.
- Both A and R are true but R is not the correct explanation of A.
- A is true but R is false.
- A is false but R is true.
Python Modules
1 Like
Answer
Both A and R are true but R is not the correct explanation of A.
Explanation
The random module is a built-in module used to generate pseudorandom floating point values. The randrange() method generates a random integer number between its lower and upper argument.
Answered By
2 Likes
Related Questions
To include the use of functions which are present in the random library, we must use the option:
- import random
- random.h
- import.random
- random.random
What will be the output of the following code:
>>> import statistics >>> statistics.mode([2, 5, 3, 2, 8, 3, 9, 4, 2, 5, 6])- 2
- 3
- 5
- 6
Assertion (A): The randint() method returns an integer from the specified range.
Reasoning (R): The syntax for randint() is:
random.randint (start:stop)- Both A and R are true and R is the correct explanation of A.
- Both A and R are true but R is not the correct explanation of A.
- A is true but R is false.
- A is false but R is true.
Assertion (A): The function ceil() is a commonly used function from math module.
Reasoning (R): The ceil() function takes a numeric argument and returns the smallest integer that is greater than or equal to the argument.
- Both A and R are true and R is the correct explanation of A.
- Both A and R are true but R is not the correct explanation of A.
- A is true but R is false.
- A is false but R is true.