ITIPT01 Quiz No 1

ITIPT01 Quiz No 1

University

20 Qs

quiz-placeholder

Similar activities

Python revision

Python revision

10th Grade - University

15 Qs

Basic Python

Basic Python

University

20 Qs

quiz dasar python

quiz dasar python

1st Grade - University

20 Qs

Introduction to Python

Introduction to Python

University

20 Qs

Intermediate Python

Intermediate Python

University

15 Qs

Iedc Coders Club Programming Quiz

Iedc Coders Club Programming Quiz

University

25 Qs

Condicionales, strings y listas

Condicionales, strings y listas

University

20 Qs

Lists In Python_1

Lists In Python_1

9th Grade - University

15 Qs

ITIPT01 Quiz No 1

ITIPT01 Quiz No 1

Assessment

Quiz

Computers

University

Hard

Created by

J.A.G. Visuals

Used 5+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a correct syntax to add the value 'Hello World', to 3 values in one statement?

x, y, z = 'Hello World'

x = y = z = 'Hello World'

x|y|z = 'Hello World'

x, y, z == 'Hello World'

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following code:
fruits = ['apple', 'banana', 'cherry']
a, b, c = fruits


print(a)

grape

orange
watermelon
apple

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True or False: Indentation in Python is for readability only.

False

True

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following codes will not display the output

HELLO

WORLD

print("HELLO " + \n + "WORLD")

print("HELLO ");
print("WORLD");

print("HELLO " + "WORLD", end = " ")

x = str("HELLO")
print(x)
print(str("WORLD"))

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Complete the code block, print "YES" if 5 is larger than 2.

Which of the following codes will print sample output above?

if 5 > 2:
print("YES", end=" ")

if 5 < 2:
print("YES")

if 5>2:
print("Yes")

if 5<2:
print("YES");

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the result of the following code:
print(int(35.88))

35

35.88

36

35.0

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the result of the following code:
print(float(69))

69.00

69.0

69.

decima(69.0)

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?