Python-advanced

Python-advanced

1st - 4th Grade

8 Qs

quiz-placeholder

Similar activities

All about Adham_trorex

All about Adham_trorex

1st - 4th Grade

9 Qs

Yr 7 Flowgorithm

Yr 7 Flowgorithm

3rd Grade

10 Qs

EIS - Grade 4 - Coding -Quadmester2 Quiz

EIS - Grade 4 - Coding -Quadmester2 Quiz

4th Grade

10 Qs

CodeHS Arraylist

CodeHS Arraylist

1st Grade

10 Qs

Challenge yourself

Challenge yourself

2nd Grade

13 Qs

Quiz ADT linked list 20-12-66

Quiz ADT linked list 20-12-66

1st Grade

10 Qs

การประเมินการเขียนโปรแกรมภาษาไพทอน

การประเมินการเขียนโปรแกรมภาษาไพทอน

1st Grade

10 Qs

TECHFEST 2K21 (DEBUGGING)

TECHFEST 2K21 (DEBUGGING)

1st Grade

10 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