Question: What is the correct way to call this function?

  1. myFunc(5, b: 6)
  2. myFunc(5, 6)
  3. myFunc(a: 5, b: 6)
  4. myFunc(a, b)

Answer: The correct answer of the above question is Option A:myFunc(5, b: 6)