adplus-dvertising
frame-decoration

Question

Which of the following snippet will effectively generate random numbers?

a.

rand();

b.

rand(10);

c.

rand(time(NULL));

d.

all of the mentioned

Posted under C Programming

Answer: (a).rand();

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following snippet will effectively generate random numbers?

Similar Questions

Discover Related MCQs

Q. Which among the following is correct function call for rand and random?

Q. For the function call time(), what type of parameter is accepted?

Q. Which of these is a correct way to generate numbers between 0 to 1(inclusive) randomly?

Q. The number of digits present after decimal in float is________.

Q. Which among the following is never possible as an output for float?

Q. In a 32-bit compiler, which 2 types have same size?

Q. What is the size of float in a 32-bit compiler?

Q. Loss in precision occurs for typecasting from____________.

Q. For union

union temp
{
char a;
int b;
float c;
};

The size is decided by:

Q. %f access specifier is used for

Q. Select the odd one out with respect to type?

Q. Which of the following % operation is invalid?

Q. Which data type is suitable for storing a number like?
10.0000000001

Q. Modulus for float could be achieved by?

Q. Predict the data type of the following mathematical operation?
2 * 9 + 3 / 2 . 0

Q. %lf is used to display

Q. What is the sizeof(char) in a 32-bit C compiler?

Q. Size of an array can be evaluated by:
(Assuming array declaration int a[10];)

Q. Which of the following is not an operator in C?

Q. Which among the following has the highest precedence?