Python-01-Basic

Python-01-Basic

9 Qs

quiz-placeholder

Similar activities

Problem Solving using C - EBT(2025-2026 odd)

Problem Solving using C - EBT(2025-2026 odd)

University

11 Qs

SS7CG1 African Governments

SS7CG1 African Governments

7th Grade

11 Qs

Ch. 2.1 Review

Ch. 2.1 Review

KG - University

14 Qs

Data Structures Auto Quiz

Data Structures Auto Quiz

KG - University

10 Qs

1302 ROT Day One

1302 ROT Day One

Professional Development

13 Qs

7th Grade - Indigo Set 8

7th Grade - Indigo Set 8

KG - University

10 Qs

Math Quiz G7

Math Quiz G7

7th Grade

10 Qs

Test 1: The Industrial Revolution

Test 1: The Industrial Revolution

10th Grade

10 Qs

Python-01-Basic

Python-01-Basic

Assessment

Quiz

others

Easy

Created by

Chun-Jung Lin

Used 9+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

What is the type of the following: 0
int
float

2.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

What is the type of the following number: 3.12323
int
float

3.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

What is the result of the following: int(3.99)
3.99
3

4.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

What is the result of the following operation: 11//2
5
5.5

5.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

What is the value of x after the following is run: x=4 x=x/2
4.0
2.0

6.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

Media Image
What is the result of the following: Name[0]
"i"
"M"
"n"

7.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

Media Image
What is the result of the following: Name[-1]
"o"
"M"
"n"

8.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

What is the output of the following: print("AB\nC\nDE")

AB

CD

E

ABC

DE

AB

C

DE

9.

MULTIPLE CHOICE QUESTION

30 sec • 10 pts

What is the result of following? "hello Mike".find("Mike") If you are unsure, copy and paste the code into Jupyter Notebook and check.
5
6
6,7,8