Python + AIoT 基礎

Python + AIoT 基礎

9th Grade - University

8 Qs

quiz-placeholder

Similar activities

抄來的Python測驗

抄來的Python測驗

9th - 12th Grade

10 Qs

Python Math

Python Math

1st - 12th Grade

10 Qs

Python Iteration

Python Iteration

10th Grade

13 Qs

Python Intro

Python Intro

8th - 9th Grade

10 Qs

Python Programming - Iteration

Python Programming - Iteration

9th Grade

12 Qs

Python 輸入/變數/輸出

Python 輸入/變數/輸出

11th Grade

10 Qs

PYTHON (FOR LOOP)

PYTHON (FOR LOOP)

1st - 10th Grade

10 Qs

Advanced Python Iteration Quiz

Advanced Python Iteration Quiz

10th Grade

10 Qs

Python + AIoT 基礎

Python + AIoT 基礎

Assessment

Quiz

Computers

9th Grade - University

Medium

Created by

Ifan Cheung

Used 3+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

AIoT可以拆解為那些說法?

AI + IoT

Internet + Technology

AI + I/O + IoT

AI + I/O

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Python屬於____?

低階語言(Low level language)

機器語言(Machine language)

組合語言(Assembly language)

高階語言(High level language)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Python有那些特點?

編程碼較短, 跨平台

只能於電腦運行

每句編碼最後一定加 ;

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

以下那個是在Python中Comment的方法?

#This is a comment#

#This is a comment

This is a comment#

//This is a cpmment

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

若要使用Python列印出"Hello World", 以下那個才是正確的方法?

print(Hello World)

printf("Hello World")

printf(Hello World)

print("Hello World")

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

 

以下那個才是於Python中定義函式(function)正確方法?

define printInfo():

print(a)

print(b)

def printInfo():

print(a)

print(b)

function printInfo()

print(a)

print(b)

func printInfo():

print(a)

print(b)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

以下那個才是於Python中設置變數(variable)的正確方法?

a = 1

b = 0.5

int a = 1

float b = 0.5

string a = 1

string b = 0.5

int a = 1

int b = 0.5

8.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

請指出For Loop 與While Loop 的分別

For Loop: 指定執行次數; While Loop: 符合指定條件,無限執行

While Loop: 指定執行次數; For Loop: 符合指定條件,無限執行