Python-advanced

Python-advanced

1st - 4th Grade

8 Qs

quiz-placeholder

Similar activities

Challenge yourself

Challenge yourself

2nd Grade

13 Qs

What Do They Know? Do They Know Things?? Let's Find Out!

What Do They Know? Do They Know Things?? Let's Find Out!

1st - 5th Grade

12 Qs

แบบทดสอบวิทยาการคำนวณก่อน ปลายภาค

แบบทดสอบวิทยาการคำนวณก่อน ปลายภาค

3rd Grade

10 Qs

PYTHON (FOR LOOP)

PYTHON (FOR LOOP)

1st - 10th Grade

10 Qs

Python Quiz - 4

Python Quiz - 4

4th - 11th Grade

10 Qs

Python-2

Python-2

1st - 4th Grade

5 Qs

Python-Partie2

Python-Partie2

1st Grade

10 Qs

Algorithms

Algorithms

2nd - 6th Grade

11 Qs

Python-advanced

Python-advanced

Assessment

Quiz

Computers

1st - 4th Grade

Medium

Created by

afnan amin

Used 19+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How to define a list in python ?

my list=[1,2,3]

my_list={1,2,3)

my_list=[1,2,3]

mylist=1,2,3

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How to add number 10 to this list?

myList=[1,2,3,4]

myList.append(10)

myList.insert(0,10)

both correct

none of the answers is correct

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

myList=["ahmed","alaa,"mostafa","Malak","Hajar","leen"]

how to change values ("mostafa","Malak","Hajar") with values

("ahlam","Momen,"asmaa")

PLEASE KEEP SPACE BETWEEN THE TWO LINES THAT YOU WILL WRITE

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How to remove "ahmed" from this list ?

myList=["ahmed","alaa","mostafa","Malak","Hajar","leen"]

myList.delete

("ahmed")

myList.remove

("ahmed")

myList.delete

(0)

myList.remove

(0)

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

How to sort this list?

myList=[2,5,3,1,4,6]

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

x=4

y=4

if x>y:

print("yes")

elif x<y: print("No")

else: print("no condition met")

what will be the output?

yes

no

no condition met

error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

firstname="ahlam"

secondname="samir"

if (firstname==secondname):

print("true")

else:

print("false")

true

false

error

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

secondchar='a'

firstchar='A'

if (secondchar==firstchar):

print("yes")

else:

print("NO")

yes

no

error