ITIPT01 Quiz No 1

ITIPT01 Quiz No 1

University

20 Qs

quiz-placeholder

Similar activities

Introduction To Python

Introduction To Python

University

20 Qs

Python for beginners

Python for beginners

University

20 Qs

Evaluasi 2 (Mathematica-Phyton)

Evaluasi 2 (Mathematica-Phyton)

University

20 Qs

Computational Thinking in Python[Quiz 2]

Computational Thinking in Python[Quiz 2]

University

15 Qs

Assessment #2

Assessment #2

5th Grade - Professional Development

20 Qs

Python Programming 1: print, strings, variables, casting

Python Programming 1: print, strings, variables, casting

9th Grade - University

15 Qs

พื้นฐาน Python ม2

พื้นฐาน Python ม2

1st Grade - University

21 Qs

Beginner Quiz on ML and Python Basics

Beginner Quiz on ML and Python Basics

University

20 Qs

ITIPT01 Quiz No 1

ITIPT01 Quiz No 1

Assessment

Quiz

Computers

University

Hard

Created by

J.A.G. Visuals

Used 6+ 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?