Assume you are running the following code in the Python interpreter:
class Account:
num_of_accounts = 0
def __init__(self, id):
self.id = id
Account.num_of_accounts += 1
def register(self, student):
self.student = student
return f'Registered: {student}'
Without using the Python interpreter, what is the output of the following statements when the code is executed?
[Answer 5]
>>> x = Account("AT5")
>>> x.register("Peter Pan")
[Answer 1]
>>> Account.register(self, "Jane Doe")
[Answer 2]
>>> Account.register(x, "Jane Doe")
[Answer 3]
>>> Account.register("Alex Matthews")
[Answer 4]
>>> w = Account("LP9")
>>> w.register("Lily Smith")