Python - 1

Python - 1

University

13 Qs

quiz-placeholder

Similar activities

2020 kpop Quiz (Jan & Feb)

2020 kpop Quiz (Jan & Feb)

5th Grade - Professional Development

16 Qs

Tomorrow X Together

Tomorrow X Together

KG - Professional Development

15 Qs

TXT (Tomorrow X Together) Quiz

TXT (Tomorrow X Together) Quiz

KG - Professional Development

15 Qs

Python

Python

University

15 Qs

Day-4 Assessment(Essentials of Data Analytics using R)

Day-4 Assessment(Essentials of Data Analytics using R)

University

16 Qs

Lección 1

Lección 1

University

10 Qs

snakes

snakes

3rd Grade - University

10 Qs

dogs

dogs

5th Grade - Professional Development

10 Qs

Python - 1

Python - 1

Assessment

Quiz

Other

University

Hard

Created by

Aparna Mutnalkar

Used 4+ times

FREE Resource

13 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

In a Python program, a control structure:

Dictates what happens before the program starts and after it terminates

Defines program-specific data structures

Directs the order of execution of the statements in the program

Manages the input and output of control characters

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What signifies the end of a statement block or suite in Python?

A comment

A line that is indented less than the previous line

}

end

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Suppose you have the following variables defined: a = 100

b = 50

Write a Python if/else statement to assign the smaller of a and b to the variable m.

if a < b:

m = a

else:

m = b

if a < b

m = a

else:

m = b

if a > b

m = b

else

m = a

if a < b

m = a

else

m = b

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following are true of Python dictionaries:

Dictionaries can be nested to any depth.

Dictionaries are accessed by key.

Items are accessed by their position in a dictionary.

Dictionaries are mutable.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What statement will remove the entry in the dictionary for key 'baz'?

d.remove('baz')

pop('baz')

del d['baz']

del d('baz')

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Once again consider this dictionary:

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

What is the result of this statement: d['bar':'baz']

It raises an exception

[200, 300]

(200, 300)

200 300

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

The Python interpreter takes the code that you write and converts it to the language that the computer’s hardware understands.

Is this statement True or False?

True

False

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?