Python Basic Level 2 | RoboticSchools

Python Basic Level 2 | RoboticSchools

10th Grade

70 Qs

quiz-placeholder

Similar activities

S1 Computer Science Assessment 3 2025

S1 Computer Science Assessment 3 2025

9th - 10th Grade

75 Qs

Algoritma Pemrograman

Algoritma Pemrograman

10th Grade

72 Qs

Python Turtle Quiz

Python Turtle Quiz

5th - 12th Grade

75 Qs

Python / Algorithms 7/3/19

Python / Algorithms 7/3/19

10th Grade

70 Qs

Recap - OOP, Python and Computational thinking

Recap - OOP, Python and Computational thinking

10th Grade

70 Qs

AP Computer Science Principles Semester 1 Python

AP Computer Science Principles Semester 1 Python

10th - 12th Grade

75 Qs

Khởi động Python

Khởi động Python

1st - 10th Grade

73 Qs

Стартовая диагностика

Стартовая диагностика

9th - 12th Grade

75 Qs

Python Basic Level 2 | RoboticSchools

Python Basic Level 2 | RoboticSchools

Assessment

Quiz

Computers

10th Grade

Medium

Created by

Robotic Schools

Used 7+ times

FREE Resource

70 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 10 pts

Which can be an Identifier among them in Python?

$123

_abc

@fg

1a

2.

MULTIPLE CHOICE QUESTION

1 min • 10 pts

What will be the output of the following Python code?

>>>list1 = [1, 3]

>>>list2 = list1

>>>list1[0] = 4

>>>print(list2)

[1, 4]

[1, 3, 4]

[4, 3]

[1, 3]

3.

MULTIPLE CHOICE QUESTION

1 min • 10 pts

Which of the following is a Python tuple?

{1, 2, 3}

{}

(1, 2, 3)

[1, 2, 3]

4.

MULTIPLE CHOICE QUESTION

1 min • 10 pts

  1. Predict the output
    str1="helloworld"

    str1[::-1]

dlrowolleh

hello

world

helloworld

5.

MULTIPLE CHOICE QUESTION

1 min • 10 pts

What is the output of the following Code

aList = [4, 8, 12, 16]

aList[1:4] = [20, 24, 28]

print(aList)

[4, 20, 24, 28, 8, 12, 16]

[4, 20, 24, 28]

[20,24,28,12,16]

[4,20,24,28,16]

6.

MULTIPLE CHOICE QUESTION

1 min • 10 pts

Which is known as simple assignment operator?

==

=

+=

#

7.

MULTIPLE CHOICE QUESTION

1 min • 10 pts

What will the output be from the following code?
print("Hello world!\nHello world!")
Hello world! Hello world!
Hello world!
Hello world!
SyntaxError
Hello world!

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?