Which of the following answers will create an empty class? (select three)

Questions & AnswersCategory: PythonWhich of the following answers will create an empty class? (select three)
Lokesh Kumar Staff asked 2 years ago

Which of the following answers will create an empty class? (select three)
a. 
class Car:
b.

class Person:
pass

c.

class Student: pass

d.

class Company(object):
pass