第2天一開始的考試

第2天一開始的考試

9th Grade

8 Qs

quiz-placeholder

Similar activities

Flowchart

Flowchart

6th - 10th Grade

10 Qs

Python Programming Basics

Python Programming Basics

7th - 11th Grade

12 Qs

Form 1

Form 1

9th Grade

11 Qs

Project-Stem Unit 1 python coding

Project-Stem Unit 1 python coding

9th - 12th Grade

12 Qs

python4-lesson10

python4-lesson10

2nd - 12th Grade

12 Qs

单元二 认识数据库的系统

单元二 认识数据库的系统

1st Grade - Professional Development

6 Qs

數位化概念

數位化概念

9th Grade

10 Qs

閩南語

閩南語

1st - 11th Grade

10 Qs

第2天一開始的考試

第2天一開始的考試

Assessment

Quiz

Computers

9th Grade

Medium

Created by

徐存昇 徐存昇

Used 6+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

下列關於 文字 的資料型態何者正確

"我是文字"

"我是文字'

'我是文字"

我是文字

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

請問變數a的資料型態為?

a = "Int"

int

float

str

bool

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

a = input()

b = int(input())

當使用者先後輸入 3 、 2。

則print(a*b)會顯示多少

6

Error

33

222

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

print("我\n是", end = " ")

print("誰")

請問以上程式碼會印出甚麼

是 誰

我是 誰

我是

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

關於input()的用法,下列何者正確

a = input(輸入)

a = input("輸入")

a = input[]

a = input(超派)

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

若使用者輸入兩次分別為

10

apple

發現執行錯誤,請問原因為何?

a,b = int(input()), int(input())

print(a+b)

10不能轉成數字

apple不能轉成數字

數字不能與文字相加

電腦壞了

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

請問下列程式的運行結果為何

a = 10

b = 20

a = a+b

b = b+a

print(a)

20

30

40

50

8.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

以下何種方式"不"會輸出8

a = 24/3

print(a)

a = int(24/3)

print(a)

a = 24//3

print(a)

a = 2**3

print(a)