Answer:
A
Step-by-step explanation:
A static method is a method which is common for all objects.it is shared method between different objects. we can call that method with class name.
in the given code we are calling printDeposit() method using this. "this" keyword always represents that current object.so it is used to call instance method.
this.printDeposit(accountNum, date, amt);
The Answer is A