Formal parameters are local variables. Local variables are used first.
This means that the line age = age is assigning the value of the formal parameter age to itself! The instance variables are then assigned the default values based on their data types.

Scope refers to where a variable can be used.

We can use the this keyword to refer to the instance variables instead of the local variables. The this keyword is used to refer to the current object.
