Q. Function used for linear regression in R is __________

  • (A) lm(formula, data)
  • (B) lr(formula, data)
  • (C) lrm(formula, data)
  • (D) regression.linear(formula, data)
πŸ’¬ Discuss
βœ… Correct Answer: (A) lm(formula, data)

Q. Naive Bayes classifiers is _______________ Learning

  • (A) Supervised
  • (B) Unsupervised
  • (C) Both
  • (D) None
πŸ’¬ Discuss
βœ… Correct Answer: (A) Supervised

Q. Features being classified is independent of each other in Naïve Bayes Classifier

  • (A) False
  • (B) true
  • (C) ---
  • (D) ---
πŸ’¬ Discuss
βœ… Correct Answer: (B) true

Q. Features being classified is __________ of each other in Naïve Bayes Classifier

  • (A) Independent
  • (B) Dependent
  • (C) Partial Dependent
  • (D) None
πŸ’¬ Discuss
βœ… Correct Answer: (A) Independent

Q. Bayes’ theorem describes the probability of an event, based on prior knowledge of conditions that might be related to the event.

  • (A) True
  • (B) false
  • (C) ---
  • (D) ---
πŸ’¬ Discuss
βœ… Correct Answer: (A) True

Q. Gaussian distribution when plotted, gives a bell shaped curve which is symmetric about the _______ of the feature values.

  • (A) Mean
  • (B) Variance
  • (C) Discrete
  • (D) Random
πŸ’¬ Discuss
βœ… Correct Answer: (A) Mean

Q. SVMs directly give us the posterior probabilities P(y = 1jx) and P(y = ?1jx)

  • (A) True
  • (B) false
  • (C) ---
  • (D) ---
πŸ’¬ Discuss
βœ… Correct Answer: (B) false

Q. In a linear regression problem, we are using “R-squared” to measure goodness-of-fit. We add a feature in linear regression model and retrain the same model.Which of the following option is true?

  • (A) If R Squared increases, this variable is significant.
  • (B) If R Squared decreases, this variable is not significant.
  • (C) Individually R squared cannot tell about variable importance. We can’t say anything about it right now.
  • (D) None of these.
πŸ’¬ Discuss
βœ… Correct Answer: (C) Individually R squared cannot tell about variable importance. We can’t say anything about it right now.

Q. Which of the following is true about “Ridge” or “Lasso” regression methods in case of feature selection?

  • (A) Ridge regression uses subset selection of features
  • (B) Lasso regression uses subset selection of features
  • (C) Both use subset selection of features
  • (D) None of above
πŸ’¬ Discuss
βœ… Correct Answer: (B) Lasso regression uses subset selection of features

Q. Which of the following statement(s) can be true post adding a variable in a linear regression model?1. R-Squared and Adjusted R-squared both increase2. R-Squared increases and Adjusted R-squared decreases3. R-Squared decreases and Adjusted R-squared decreases4. R-Squared decreases and Adjusted R-squared increases

  • (A) 1 and 2
  • (B) 1 and 3
  • (C) 2 and 4
  • (D) None of the above
πŸ’¬ Discuss
βœ… Correct Answer: (A) 1 and 2

Jump to