Mbzuai Entry Exam Sample Questions Best

MBZUAI entry exam — sample questions & best preparation tips

MBZUAI (Mohamed bin Zayed University of Artificial Intelligence) entry exams assess applicants’ foundations in mathematics, programming, and reasoning. Below is a concise sample-question set and practical guidance to prepare effectively.

D. Python Programming

  • Loops, functions, list comprehensions, dictionaries, recursion.
  • Sample:
    What is the output of: print([x**2 for x in range(3) if x%2==0])
    a) [0,4] b) [0,1,4] c) [0] d) [4]
    Answer: a) [0,4] (x=0→0²=0; x=1 skipped; x=2→4)

Video Tutorials: Search for "Mathematical for Machine Learning" on YouTube to review foundational math. mbzuai entry exam sample questions best

  • A. ( \frac125\beginbmatrix 9 & 12 \ 12 & 16 \endbmatrix )
  • B. ( \frac15\beginbmatrix 3 & 4 \ 4 & 3 \endbmatrix )
  • C. ( \beginbmatrix 1 & 0 \ 0 & 1 \endbmatrix )
  • D. ( \beginbmatrix 0.6 & 0.8 \ 0.8 & 0.6 \endbmatrix )

Sample Q1 (Gradient Descent):