Python Revision

Python Revision

University

14 Qs

quiz-placeholder

Similar activities

COMP177 Mod 8 - Lists & Dictionaries

COMP177 Mod 8 - Lists & Dictionaries

University

16 Qs

Phyton-1

Phyton-1

University

12 Qs

Linux Tools for Developers

Linux Tools for Developers

University

15 Qs

Guess This Cartoon !

Guess This Cartoon !

KG - University

10 Qs

N4 Theory - 2

N4 Theory - 2

12th Grade - University

15 Qs

python basics

python basics

11th Grade - University

15 Qs

Python Quiz

Python Quiz

9th Grade - Professional Development

10 Qs

CMP128 Java Ch. 02 Sequence & Fundamentals

CMP128 Java Ch. 02 Sequence & Fundamentals

University

10 Qs

Python Revision

Python Revision

Assessment

Quiz

Computers

University

Hard

Created by

Chempaka Seri Abdul Razak

Used 53+ times

FREE Resource

14 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the data type of this variable?

student = "Maria"

List

Integer

String

Dictionary

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the data type of this variable?

snake = {"hiss", "glide", "long", "scales"}

String

Tuple

List

Set

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the data type of this variable?

channel = [{"num": 701, "name":"AXN"}, {"num": 801, "name": "WWE"}, {"num": 105, "name": "PRIMA"}]

List

Dictionary

Set

Tuple

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the correct syntax for input in Python?

user_input = input("Enter your input")

user_input = input(Enter your input)

user_input = input("Enter your input",enter_num)

user_input = ("Please enter your input")

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the print coding below here will show an error?

print("My name is".name)

print("My name is",name)

print("My name is"+str(name))

print(f"My name is {name}")

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

subject = "Anomaly Detection in Twitter"

print(subjects.upper())

What is the correct output from this code?

ANOMALY DETECTION IN TWITTER

Anomaly Detection in Twitter

anomaly detection in twitter

Error

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

status = "I like to eat chickens"

print(status[:6]+status[13:])

What is the output of the coding above?

I likechickens

like chickens

I like chickens

eat chickens

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?