Python Marathon (Difficult Round)

Python Marathon (Difficult Round)

1st - 6th Grade

5 Qs

quiz-placeholder

Similar activities

TEJIDOS

TEJIDOS

1st - 5th Grade

10 Qs

Customer Support Quizz Maret 2022

Customer Support Quizz Maret 2022

1st - 3rd Grade

10 Qs

Latihan Soal Ranking 1

Latihan Soal Ranking 1

4th - 6th Grade

10 Qs

Cuestionario - Angela

Cuestionario - Angela

1st - 12th Grade

10 Qs

open ended quiz

open ended quiz

3rd Grade

10 Qs

Cálculo mental 10/09

Cálculo mental 10/09

KG - 3rd Grade

10 Qs

Simple

Simple

5th Grade

10 Qs

Matematika Kelas 5 - Waktu

Matematika Kelas 5 - Waktu

5th - 6th 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)