Loading

Quipoin Menu

Learn • Practice • Grow

math-for-ai / Gradient Descent
mcq
Direction: Choose the correct option

Q1.

What is gradient descent?
A. An optimization algorithm
B. A regression algorithm
C. A classification algorithm
D. A clustering algorithm
Direction: Choose the correct option

Q2.

In gradient descent, the negative gradient points in the direction of:
A. Steepest descent
B. Random direction
C. No change
D. Steepest ascent
Direction: Choose the correct option

Q3.

What is the update rule for parameter θ?
A. θ = θ - α * ∇J(θ)
B. θ = α * ∇J(θ)
C. θ = ∇J(θ)
D. θ = θ + α * ∇J(θ)
Direction: Choose the correct option

Q4.

Batch gradient descent uses:
A. Entire dataset per update
B. One sample per update
C. Mini-batch per update
D. None
Direction: Choose the correct option

Q5.

Stochastic gradient descent (SGD) updates parameters:
A. After each training example
B. After each epoch
C. After each batch
D. Once