python2-lesson14

python2-lesson14

3rd - 12th Grade

10 Qs

quiz-placeholder

Similar activities

4年级设计与工艺单元6电脑编程,我最行

4年级设计与工艺单元6电脑编程,我最行

4th Grade

9 Qs

网络安全漏洞-Quiz

网络安全漏洞-Quiz

1st - 5th Grade

10 Qs

电脑学会摊位游戏

电脑学会摊位游戏

KG - Professional Development

10 Qs

程序编码

程序编码

3rd Grade

7 Qs

CyberSecurity Training - Quiz1

CyberSecurity Training - Quiz1

1st - 5th Grade

10 Qs

16/6/2020 - 伪代码与流程图

16/6/2020 - 伪代码与流程图

6th Grade

8 Qs

演算法

演算法

7th - 9th Grade

10 Qs

第七章 应用软体

第七章 应用软体

11th Grade

10 Qs

python2-lesson14

python2-lesson14

Assessment

Quiz

Computers

3rd - 12th Grade

Medium

Created by

hang zheng

Used 18+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

已知存在一个类Animal,现在想创建一个新类Bird类同时要继承Animal类,下列代码格式正确的是?

def Animal(BIrd):

def Bird(Animal):

class Animal(Bird):

class Bird(Animal):

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

观察上图中的代码,谁是父类,谁是子类?

Animal是父类,Dog是子类

Dog是父类,Animal是子类

两个都是父类

两个类毫无关联,没有父类子类的区分

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

观察上述代码,请问创建的实例d中有几个属性?

1

2

3

4

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

super().__init__()中的super()表示什么?

父类

子类

父类的__init__()方法

子类的__init__()方法

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

运行上述代码,程序会产生什么结果?

程序报错

输出1

程序运行正常,但什么都不输出

输出None

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Animal类中有一个run方法,现在有一个Dog类的实例d,Dog类中并没有run方法,请问d可以运行run方法吗?

一定可以,因为Animal中有run()方法

不一定,因为无法确定Dog类是否继承了Animal类

一定不可以,因为Dog类中没有run方法

一定可以,Dog类自带一个run()方法

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

观察上述代码,如果想让实例d执行run()方法,下列代码正确的是?

Animal.run()

Dog.run()

d.run()

run()

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?