Multiple choice technology programming languages

The compiler uses it to internally reference the data members of a particular object

  1. vtable entry

  2. this pointer

  3. Constructors

  4. default value

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

The this pointer is a hidden pointer passed to non-static member functions that points to the object invoking the method. It allows the compiler to resolve which object's data members are being accessed when multiple objects of the same class exist.