Multiple choice

Consider the following C++ code:

Number num1 = Number(100,200);

If Number refers to a class, then this method of calling constructor function is called

  1. explicit call

  2. implicit call

  3. pointer call

  4. reference call

  5. call by value

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

This method of calling constructor function is called as explicit call.