Artificial Intelligence

Change Setup
📘 Comprehensive Syllabus & Examination Guide

Artificial Intelligence

Official curriculum roadmap, subject/topic distribution, negative marking rules, pacing guidelines, and solved sample questions.

🎯 Mapped Subjects & Topic Question Distribution

Total Question Pool 100%
410 MCQs
Combined Active Syllabus
Classical Machine Learning & Statistical Foundations
82 MCQs
Topic Pool
Deep Learning Architectures & Optimization
82 MCQs
Topic Pool
Transformers, LLMs & Natural Language Processing
82 MCQs
Topic Pool
Computer Vision & Geospatial Remote Sensing AI
82 MCQs
Topic Pool
Time-Series Forecasting & MLOps Deployment
82 MCQs
Topic Pool
📊 Question Pool Structure
410 MCQs across fundamental, intermediate, and advanced concept tiers.
⚡ Recommended Pacing
45 to 60 seconds per MCQ. Flag complex problems and preserve 10 minutes for final revision.
⚖️ Scoring & Negative Marking
+1 mark per correct answer. In competitive tests with negative marking, -0.25 applies for incorrect guesses.

💡 Strategic Preparation & Exam Hall Guidelines

To maximize your score on Artificial Intelligence, candidates are advised to follow a structured three-pass approach. In the First Pass, solve all direct recall and formula-based questions within 30 seconds each to secure foundational marks. In the Second Pass, tackle multi-step analytical and quantitative reasoning problems. In the Third Pass, review marked questions and verify calculations.

Practice with the interactive player below to evaluate your speed and accuracy under real exam pressure. Every question features full mathematical formulas, step-by-step worked solutions, and conceptual explanations vetted by Apex Rankers Academy subject matter specialists.

Ready to test your knowledge? Launch interactive 1-by-1 practice with instant feedback, bookmarking, and step-by-step rationales.
Solved Blueprint Examples

📝 Pre-Rendered Solved Sample Questions & Detailed Solutions

Showing 10 solved representative questions

Review the solved problems below to understand question phrasing, answer choices, and step-by-step solution logic prior to starting the full interactive practice drill:

Sample Question 1
Classical Machine Learning & Statistical Foundations Hard • Artificial Intelligence
In linear regression, what fundamental assumption is violated when the variance of the residuals is not constant across all levels of the independent variables?
A Homoscedasticity (resulting in Heteroscedasticity)
B Multicollinearity
C Normality of features
D Linear independence of predictors
✓ Correct Answer: A - Homoscedasticity (resulting in Heteroscedasticity)
📖 Step-by-Step Solution & Conceptual Rationale:
Heteroscedasticity occurs when error terms have non-constant variance, leading to inefficient OLS coefficient standard error estimates.
Sample Question 2
Classical Machine Learning & Statistical Foundations Medium • Artificial Intelligence
Which regularization technique adds a penalty equal to the sum of the absolute values of the coefficients (L1 penalty) to the loss function, inducing feature sparsity?
A Lasso Regression (L1 Regularization)
B Ridge Regression (L2 Regularization)
C Ordinary Least Squares
D Polynomial Regression
✓ Correct Answer: A - Lasso Regression (L1 Regularization)
📖 Step-by-Step Solution & Conceptual Rationale:
Lasso adds lambda * sum(|beta_j|), driving irrelevant feature weights to exactly zero, thus performing automated feature selection.
Sample Question 3
Classical Machine Learning & Statistical Foundations Medium • Artificial Intelligence
What is the primary difference between L1 (Lasso) and L2 (Ridge) regularization?
A L1 penalizes absolute magnitude and can set weights to zero; L2 penalizes squared magnitude and shrinks weights toward zero without setting them strictly to zero
B L1 is for classification only; L2 is for regression only
C L1 increases model variance; L2 increases model bias
D L1 is non-differentiable everywhere; L2 is non-convex
✓ Correct Answer: A - L1 penalizes absolute magnitude and can set weights to zero; L2 penalizes squared magnitude and shrinks weights toward zero without setting them strictly to zero
📖 Step-by-Step Solution & Conceptual Rationale:
L1 uses diamond-shaped contour constraints promoting sparse solutions; L2 uses spherical contours shrinking weights smoothly.
Sample Question 4
Classical Machine Learning & Statistical Foundations Medium • Artificial Intelligence
What does the 'Bias-Variance Tradeoff' represent in machine learning?
A The conflict between an algorithm's error from erroneous assumptions (Bias) and its sensitivity to small fluctuations in training data (Variance)
B The trade-off between training speed and inference latency
C The balance between dataset size and RAM usage
D The compromise between CPU and GPU hardware costs
✓ Correct Answer: A - The conflict between an algorithm's error from erroneous assumptions (Bias) and its sensitivity to small fluctuations in training data (Variance)
📖 Step-by-Step Solution & Conceptual Rationale:
High bias causes underfitting (oversimplified model); high variance causes overfitting (capturing noise). Total error = Bias^2 + Variance + Irreducible Noise.
Sample Question 5
Classical Machine Learning & Statistical Foundations Medium • Artificial Intelligence
In classification problems, which metric is defined as the harmonic mean of Precision and Recall?
A F1-Score
B ROC-AUC
C Accuracy
D Cohen's Kappa
✓ Correct Answer: A - F1-Score
📖 Step-by-Step Solution & Conceptual Rationale:
F1 = 2 * (Precision * Recall) / (Precision + Recall). It balances false positives and false negatives, especially in imbalanced datasets.
Sample Question 6
Classical Machine Learning & Statistical Foundations Medium • Artificial Intelligence
When evaluating a model on a highly imbalanced dataset (e.g. 99% non-flood, 1% flood disaster events), why is Accuracy a misleading performance metric?
A A naive model predicting 'no flood' for all instances achieves 99% accuracy while completely failing to detect any real flood event
B Accuracy cannot be computed for binary classification
C Accuracy only works for regression tasks
D Accuracy requires all features to be standardized
✓ Correct Answer: A - A naive model predicting 'no flood' for all instances achieves 99% accuracy while completely failing to detect any real flood event
📖 Step-by-Step Solution & Conceptual Rationale:
Accuracy paradox: high accuracy masks severe failure on the minority class. PR-AUC, F1-score, or Recall must be prioritized.
Sample Question 7
Classical Machine Learning & Statistical Foundations Medium • Artificial Intelligence
What is 'Precision' in a binary classification confusion matrix?
A True Positives / (True Positives + False Positives)
B True Positives / (True Positives + False Negatives)
C True Negatives / (True Negatives + False Positives)
D True Positives + True Negatives / Total
✓ Correct Answer: A - True Positives / (True Positives + False Positives)
📖 Step-by-Step Solution & Conceptual Rationale:
Precision (Positive Predictive Value) measures the proportion of predicted positive instances that were actually true positives.
Sample Question 8
Classical Machine Learning & Statistical Foundations Medium • Artificial Intelligence
What is 'Recall' (also known as Sensitivity or True Positive Rate)?
A True Positives / (True Positives + False Negatives)
B True Positives / (True Positives + False Positives)
C False Positives / (False Positives + True Negatives)
D True Negatives / (True Negatives + False Negatives)
✓ Correct Answer: A - True Positives / (True Positives + False Negatives)
📖 Step-by-Step Solution & Conceptual Rationale:
Recall measures the model's ability to find all actual positive instances in the dataset.
Sample Question 9
Classical Machine Learning & Statistical Foundations Medium • Artificial Intelligence
What does an Area Under the ROC Curve (ROC-AUC) score of 0.5 indicate?
A The classifier has performance equivalent to random guessing
B The classifier has perfect discrimination ability
C The classifier makes 100% false positive predictions
D The model is severely overfitted
✓ Correct Answer: A - The classifier has performance equivalent to random guessing
📖 Step-by-Step Solution & Conceptual Rationale:
ROC-AUC plots TPR vs FPR across all classification thresholds; 0.5 is random chance, 1.0 is perfect classification.
Sample Question 10
Classical Machine Learning & Statistical Foundations Medium • Artificial Intelligence
In decision trees, which impurity measure is computed as 1 - sum(p_i^2) for class probabilities p_i?
A Gini Impurity
B Shannon Entropy
C Information Gain Ratio
D Mean Squared Error
✓ Correct Answer: A - Gini Impurity
📖 Step-by-Step Solution & Conceptual Rationale:
Gini impurity measures the probability of misclassifying a randomly chosen element; it is the default criterion in CART trees.
Practice All 410 Questions Interactively Test your knowledge in real-time with continuous progress saving, instant scoring, and performance analytics.