challenge-1

challenge-1

11th Grade

5 Qs

quiz-placeholder

Similar activities

Python List Comprehension Review

Python List Comprehension Review

9th - 12th Grade

10 Qs

list

list

11th Grade

7 Qs

Communication & Networking - IP, MAC, Packets & Protocols

Communication & Networking - IP, MAC, Packets & Protocols

2nd - 12th Grade

10 Qs

HTML/CSS Quiz

HTML/CSS Quiz

10th Grade - University

10 Qs

Pemahaman IP address

Pemahaman IP address

11th Grade - University

10 Qs

วิทยาการคำนวณ

วิทยาการคำนวณ

7th - 12th Grade

10 Qs

Quiz Teknologi Jaringan Semester 2

Quiz Teknologi Jaringan Semester 2

11th Grade

10 Qs

Quiz_1_WAN

Quiz_1_WAN

11th Grade

10 Qs

challenge-1

challenge-1

Assessment

Quiz

Computers

11th Grade

Hard

Created by

sajit nair

Used 2+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What does the following Python code output?

list1=[10,20,30,40,50,60]

print(list1[1:3])

[10, 20]

[20, 30]

[30, 40]

[20, 30, 40]

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What does the following Python code output?

list1 = [10, 20, 30, 40, 50, 60]

print(list1[:3])

[10, 20, 30]

[20, 30, 40]

[10, 20]

[30, 40, 50]

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What does the following Python code output?

list1 = [10, 20, 30, 40, 50, 60]

print(list1[3:]

[40, 50, 60]

[30, 40, 50]

[40, 50]

[50, 60]

4.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What does the following Python code output?

list1 = [10, 20, 30, 40, 50, 60]

print(list1[2:2])

[]

[30]

[20]

[30, 40]

5.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What does the following Python code output?

p = ['IP', 'CS', 'AI']

print(p * 3)

['IP', 'CS', 'AI']

['IP', 'CS', 'AI', 'IP', 'CS', 'AI', 'IP', 'CS', 'AI']

['IP', 'CS', 'AI', 'IP', 'CS', 'AI', 'AI', 'CS', 'IP']

['IP', 'CS', 'AI', 'CS', 'AI', 'IP', 'AI', 'IP', 'CS']

Discover more resources for Computers