Question: Which statement is equivalent to this for loop?

  1. b = a\*a;
  2. b = a.^2;
  3. b = a^2;
  4. b = pow2(a);

Answer: The correct answer of the above question is Option B:b = a.^2;