PWC_Python_Day2

PWC_Python_Day2

Professional Development

10 Qs

quiz-placeholder

Similar activities

Python Basics - Second step of Baby python

Python Basics - Second step of Baby python

Professional Development

10 Qs

ISA T&A Python test : Dec 2020

ISA T&A Python test : Dec 2020

Professional Development

10 Qs

Welcome to Kodland

Welcome to Kodland

Professional Development

10 Qs

Tableau Platform Quiz

Tableau Platform Quiz

Professional Development

15 Qs

python dictionary and set

python dictionary and set

Professional Development

15 Qs

Яндекс лицей

Яндекс лицей

Professional Development

15 Qs

ABREDES - Devasc Python

ABREDES - Devasc Python

Professional Development

14 Qs

Day 7

Day 7

Professional Development

10 Qs

PWC_Python_Day2

PWC_Python_Day2

Assessment

Quiz

Professional Development

Professional Development

Hard

Created by

CloudThat Technologies

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Media Image

What will be the output of the following Python code?

 [1, 4]

[1, 3, 4]

[4, 3]

[1,3]

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Media Image

What will be the output of the following Python code?

[1,2,3,4]

[1,2,3,4]

[1,2,3]

[1,2,3,4]

[1, 2, 3, 4]

None

Syntax error

3.

MULTIPLE CHOICE QUESTION

20 sec • 5 pts

Which of the following is a Python tuple?

{1, 2, 3}

{}

[1, 2, 3]

(1, 2, 3)

4.

MULTIPLE SELECT QUESTION

45 sec • 5 pts

Select all the correct options to join two lists in Python

list1  =  ['a', 'b', 'c', 'd']

list2 =  ['e', 'f', 'g']

    list1+list2

extend(list1,list2)

   list1.extend(list2)

   newlist.extend(list1,list2)

5.

MULTIPLE CHOICE QUESTION

20 sec • 5 pts

Consider the dictionary

d= {‘foo’:100, ‘bar’:200, ‘baz’:300}

What is the result of the statement?

d[‘bar’ : ’baz’]

(200,300)

  It raises an exception

[200,300]

200 300

6.

MULTIPLE CHOICE QUESTION

20 sec • 5 pts

What is the type of the following variable?

aTuple=("Orange")

print(type(aTuple))

List

Tuple

Array

Str

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Media Image

What will be output of the following code?

a=20

a=10

Syntax Error

Value Error

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?