Python Marathon (Difficult Round)

Python Marathon (Difficult Round)

1st - 6th Grade

5 Qs

quiz-placeholder

Similar activities

EMA ICT Course

EMA ICT Course

1st Grade

7 Qs

All About the Amazing Human Body

All About the Amazing Human Body

4th - 12th Grade

10 Qs

Fundamental Knowledge

Fundamental Knowledge

1st Grade

10 Qs

Nama bilangan

Nama bilangan

4th Grade

10 Qs

XP-300 Service Training

XP-300 Service Training

1st Grade

10 Qs

ES6 and babel on automation test

ES6 and babel on automation test

KG - 5th Grade

10 Qs

Kiểm tra toán lớp 2.

Kiểm tra toán lớp 2.

2nd Grade

6 Qs

Ouabache Trivia

Ouabache Trivia

KG - 5th Grade

9 Qs

Python Marathon (Difficult Round)

Python Marathon (Difficult Round)

Assessment

Quiz

Professional Development

1st - 6th Grade

Hard

Created by

Reymann Zubieta

Used 5+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

Media Image

What is the output of the following code?

P is present

P is present Not present

Not present

None of the above

2.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

Media Image

After execution of the following code, what is the value of s?

foofoofoobarbarbarfoobar

3foo3bar1foo1bar

foobarfoobar

2foo2bar1foo1bar

3.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

You have a set s defined as follows:

s = {100, 200, 300}

Which one of the following statements DOES NOT correctly produce the union of s and the set {300, 400, 500}:

s.union(set([300, 400, 500]))

s | [300, 400, 500]

s.union({300, 400, 500})

s | {300, 400, 500}

4.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Which of the following prints “Hello world\”?

print("Hello world\")

print("Hello world","\")

print("Hello world\\")

All of the above

5.

MULTIPLE CHOICE QUESTION

1 min • 5 pts

Media Image

What is the output of the following function call?

5

15

(15, 10)

(5, 10)