Mbzuai Entry Exam Sample Questions Best «2025»
Report: MBZUAI Entry Exam – Sample Questions & Preparation Guide
A 4-Week Study Plan Using Sample Questions
If you are serious about passing, do not just read the answers. Use this schedule:
- Week 1 (Linear Algebra): Do 50 sample questions on Eigen-decomposition and SVD. Without SVD, you cannot understand PCA (which MBZUAI asks about constantly).
- Week 2 (Probability & Calculus): Focus on MLE derivations. Take a likelihood function, log it, differentiate it, set to zero. Repeat until boring.
- Week 3 (Track Specialization): If you are CV, code a convolution from scratch in NumPy. If NLP, implement a Bigram probability matrix by hand. You will get a question asking for the counts, not just the formula.
- Week 4 (Mock Exams): Create a 90-minute timer. Use the mixed samples above. Specifically, practice switching math tracks (going from an eigenvector question to a Bayes theorem question to a kernel question in 10 seconds).
Part 2: Detailed Sample Questions by Domain
Below are sample questions modeled on the difficulty and style of MBZUAI’s actual exam. mbzuai entry exam sample questions best
E. Algorithms & Data Structures
- Complexity (Big‑O), sorting, searching, stacks/queues.
- Sample:
What is the worst‑case time complexity of binary search?
a) O(n) b) O(log n) c) O(n log n) d) O(1)
Answer: b) O(log n)