Python-advanced

Python-advanced

1st - 4th Grade

8 Qs

quiz-placeholder

Similar activities

Python Basics for Students

Python Basics for Students

3rd Grade

12 Qs

Revision on Algorithm

Revision on Algorithm

3rd Grade

8 Qs

Python

Python

1st Grade

12 Qs

Python-3

Python-3

1st - 4th Grade

10 Qs

Challenge me!

Challenge me!

2nd Grade

13 Qs

Python Final Assessment

Python Final Assessment

4th - 12th Grade

10 Qs

KODEKIDDO HACK #MLH3

KODEKIDDO HACK #MLH3

4th Grade - University

10 Qs

Challenge yourself

Challenge yourself

2nd Grade

13 Qs

Python-advanced

Python-advanced

Assessment

Quiz

Computers

1st - 4th Grade

Medium

Created by

afnan amin

Used 20+ 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