Python Marathon (Difficult Round)

Python Marathon (Difficult Round)

1st - 6th Grade

5 Qs

quiz-placeholder

Similar activities

WATSON 140922

WATSON 140922

1st Grade

10 Qs

MPC England Quiz of the Week

MPC England Quiz of the Week

1st - 12th Grade

10 Qs

Math Quiz

Math Quiz

3rd Grade

8 Qs

Lesson 12 - Transfer statements

Lesson 12 - Transfer statements

5th - 8th Grade

10 Qs

Quiz Quartet Cuan

Quiz Quartet Cuan

4th Grade

10 Qs

Dispositifs de financement de la formation professionnelle

Dispositifs de financement de la formation professionnelle

KG - Professional Development

10 Qs

Adivina el Precio

Adivina el Precio

1st - 3rd Grade

10 Qs

DA Large Numbers

DA Large Numbers

3rd Grade

10 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)