python2-lesson13

python2-lesson13

3rd - 11th Grade

10 Qs

quiz-placeholder

Similar activities

五年级 TMK 数据库系统及数据种类

五年级 TMK 数据库系统及数据种类

1st - 12th Grade

10 Qs

C++阶段测验1

C++阶段测验1

4th Grade

13 Qs

A1資訊處理:2.2數據控制

A1資訊處理:2.2數據控制

9th - 12th Grade

12 Qs

C1互聯網及其應用(1):互聯網協定(2)

C1互聯網及其應用(1):互聯網協定(2)

9th - 12th Grade

14 Qs

第6課_精彩的網路影音

第6課_精彩的網路影音

3rd - 6th Grade

10 Qs

计算机系统的组成

计算机系统的组成

6th - 8th Grade

15 Qs

第2次資訊素養問答

第2次資訊素養問答

KG - Professional Development

15 Qs

算法設計 - 數據類型/布爾算式/偽代碼/流程圖

算法設計 - 數據類型/布爾算式/偽代碼/流程圖

9th - 12th Grade

12 Qs

python2-lesson13

python2-lesson13

Assessment

Quiz

Computers

3rd - 11th Grade

Medium

Created by

hang zheng

Used 33+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

如果想要创建一个类,需要用到哪个关键字

def

class

open

for

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

创建一个类,哪个函数是必须的?

--init--(self)

__init__()

init(self)

__init__(self)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

__init__(self)函数中的self代表什么?

代表每一个创建的实例对象

什么都不是,只是一个规范而已

代表类本身

代表一个传入的参数

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

阅读图中代码,现在如果想根据Car类创建一个实例,下列代码书写正确的是?

c=Car("red")

c=Car

c=Car()

c=Car(self)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

观察上图代码,现在需要创建一个Car类的实例,下列哪种方式是正确的。

c=Car()

c=Car(c,"red","电动车",4)

c=Car("red","电动车",4)

Car("red","电动车",4)

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

现在已经存在一个People类,想要在类中增加一个新的方法,名字叫做playgame,下列代码正确的是?

def playgames(self):

def playgames():

def (playgames):

def ()playgames:

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

观察上图代码,c是Car类的一个实例,现在想打印出c中color属性,下列代码正确的是?

print(c)

print(Car.color)

print(c.color)

print(color)

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?