Severity: Warning
Message: fopen(/home/answnniz/solutionspile.com/system/sessions/ci_sessionc8ee34c87524816f16f4fdaf72469c1809be1dff): failed to open stream: Disk quota exceeded
Filename: drivers/Session_files_driver.php
Line Number: 176
Backtrace:
File: /home/answnniz/solutionspile.com/index.php
Line: 367
Function: require_once
Severity: Warning
Message: session_start(): Failed to read session data: user (path: /home/answnniz/solutionspile.com/system/sessions)
Filename: Session/Session.php
Line Number: 143
Backtrace:
File: /home/answnniz/solutionspile.com/index.php
Line: 367
Function: require_once
Jane, a Python developer in a company, has written a code for an application based on classes. He has written the following incomplete code and wants the output of it:class Person:def __init__(self, name, age):self.name = nameself.age = agep1 = Person("Jack", 40)# put the line of code hereWhich of the following print statements will Smith use to get the following output:Jack40Each correct answer represents a part of the solution. Choose two.This type of question contains radio buttons and checkboxes for selection of options. Use Tab for navigation and Enter or space to select the option.Aoption Aprint(p1.age)Boption Bprint(p1.self)Coption Cprint(p1.Person)Doption Dprint(p1.name)