wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Statistics and Probability Quiz

Total questions: 25

Worksheet time: 13mins

Name
Class
Date
1.

Given a dataset, calculate the variance of the numbers: [2, 4, 6, 8, 10].

a)

4

b)

6

c)

8

d)

10

2.

The eigenvalues of a 4x4 square matrix having 0's as the diagonal elements and 1's on the off diagonal elements is:

a)

2, -2, 0, 0

b)

1, -1, 1, -1

c)

3, -1, -1, -1

d)

4, 0, 0, 0

3.

You pick a coin at random from a bag containing a fair coin and a two-headed coin. You flip the coin twice and get heads both times. What is the probability that you picked the fair coin?

a)

1/3

b)

4/13

c)

1/5

d)

2/5

4.

In medical screening, it is sometimes more important to avoid false negatives than false positives. How would this affect the p-value we might use for a medical test?

a)

we would choose a higher p-value

b)

we would choose a lower p-value

c)

we would choose the same p-value

d)

false negatives do not depend on p-value

5.

Given y=x^x, what is dy/dx at x = 2?

a)

4(1+log2)

b)

4(2+log2)

c)

4

d)

8

6.

In a scenario where you need to group customers based on purchasing behavior without prior labels, which algorithm should you use?

a)

Linear regression

b)

K-means clustering

c)

Logistic regression

d)

Random forest

7.

For random variables X and Y, we have Var(X)=1, Var(Y)=4, and Var(2X-3Y)=34, then the correlation between X and Y is:

a)

1/2

b)

1/4

c)

1/3

d)

None of the above

8.

Two squares are chosen at random on a chessboard. What is the probability that they have a side in common?

a)

8/13

b)

17/18

c)

5/13

d)

1/18

9.

Suppose you have a dataset with m=50 examples and n=200000 features for each example. You want to use multivariate linear regression to fit the parameters Θ. Should you prefer gradient descent or the normal equation?

a)

Gradient descent, since inverse(X^T X) will be very slow to compute

b)

Gradient descent, since it will always converge to the optimal Θ

c)

The normal equation, since it provides an efficient way to directly find the solution

d)

The normal equation, since gradient descent might be unable to find the optimal Θ

10.

Let M and S² be the mean and variance of a random sample of size > 1 from a normal population with unknown mean μ and unknown finite variance σ²>0. Which statements are true?

a)

((n-1)/n)M is an unbiased estimator of μ, and ((n-1)/n)S² is an unbiased estimator of σ²

b)

1 only

c)

S² is an unbiased estimator of σ², and S is an unbiased estimator of σ

d)

Both 1 and 2

e)

2 only

11.

Given a graph of a model's training and validation error, determine if it represents underfitting or overfitting.

a)

Underfitting

b)

Overfitting

c)

Neither

d)

Both

12.

You have two coins. One is fair (1/2 heads probability) and the other is biased (3/4 heads probability). You randomly pick a coin and flip it twice, getting heads both times. What is the probability that you picked the fair coin?

a)

13/32

b)

4/13

c)

2/13

d)

19/32

13.

If rank(A) is 2 and rank(AB) is 3, then:

a)

rank(B) = 3

b)

rank(B) <= 3

c)

rank(B) >= 3

d)

data insufficient

14.

The number of solutions for the system: 2x+y-z=4, x-2y+z=-2, -x+2y-z=-2 is:

a)

0

b)

1

c)

Inf

d)

Can't be determined

15.

When classifying data with logistic classification, what is the upper bound of the likelihood in the maximum likelihood method? Is this value attainable?

a)

1, Yes

b)

e, No

c)

1, No

d)

0, Yes

16.

A 3-input neuron has weights 1, 4 and 3. The transfer function is linear with constant of proportionality = 3. The inputs are 4, 8 and 5 respectively. What will be the output?

a)

51

b)

153

c)

54

d)

160

17.

Which statements about PCA are correct?

a)

(i), (ii) and (iv)

b)

(ii) and (iv)

c)

(iii) and (iv)

d)

(i) and (iii)

18.

Given a scenario involving a dataset with labeled data and a need to predict a continuous output, which algorithm is most suitable?

a)

K-means clustering

b)

Linear regression

c)

Decision tree classifier

d)

Support vector machine (SVM) with RBF kernel

19.

The system x + y + z = 1, ax - ay + 3z = 5, 5x - 3y + az = 6 has infinite solutions if a =?

a)

-3

b)

3

c)

-4

d)

4

20.

Police enforce speed limits on routes A, B, C, D operated 40%, 30%, 20%, 30% of time. Biff speeds with route probabilities 0.2, 0.1, 0.5, 0.2. What's the probability he gets a ticket?

a)

0.27

b)

0.93

c)

0.73

d)

0.07

21.

Let A be a 2×2 matrix with a11=a12=a21=+1 and a22=-1. The eigenvalues of matrix A^19 are:

a)

1024 and -1024

b)

1024√2 and -1024√2

c)

4√2 and -4√2

d)

512√2 and -512√2

22.

If the characteristic equation of matrix A is t²-t-1=0, then:

a)

A^(-1) does not exist

b)

A^(-1) exists but cannot be determined

c)

A^(-1) = A - I

d)

A^(-1) = A + I

23.

Fitting data from a cubic function corrupted by Gaussian noise using linear (M1) and 5th degree polynomial (M5) models:

a)

Bias(M1) ≤ Bias(M5), Variance(M1) ≤ Variance(M5)

b)

Bias(M1) ≥ Bias(M5), Variance(M1) ≤ Variance(M5)

c)

Bias(M1) ≤ Bias(M5), Variance(M1) ≥ Variance(M5)

d)

Bias(M1) ≥ Bias(M5), Variance(M1) ≥ Variance(M5)

24.

Two squares are chosen at random on a chessboard. What is the probability that they have a side in common?

a)

1/36

b)

1/9

c)

2/9

d)

1/18

25.

The system 2x+y-z=1, x-2y+z=-2, -x+2y-z=-1 has how many solutions?

a)

0

b)

1

c)

2

d)

Infinitely many