Python-01-Basic

Python-01-Basic

9 Qs

quiz-placeholder

Similar activities

Parcial 1-Laboratorio II-5to BACO-I Unidad Forma B

Parcial 1-Laboratorio II-5to BACO-I Unidad Forma B

KG - University

13 Qs

Python-01-Basic-Test

Python-01-Basic-Test

KG - University

10 Qs

do-while vs do loop Quiz

do-while vs do loop Quiz

9th - 12th Grade

5 Qs

Unit 1 Review Assessment

Unit 1 Review Assessment

8th Grade

10 Qs

Nuclear Chemistry Worksheet: Fusion, Fission, and Radioactive Decay

Nuclear Chemistry Worksheet: Fusion, Fission, and Radioactive Decay

KG - University

10 Qs

Pre-Req. Skills: Day 17

Pre-Req. Skills: Day 17

KG - University

5 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