ITIPT01 Quiz No 1

ITIPT01 Quiz No 1

University

20 Qs

quiz-placeholder

Similar activities

Python Programming

Python Programming

5th Grade - University

15 Qs

Quiz on Java

Quiz on Java

University

20 Qs

loops and iterables in python

loops and iterables in python

University

20 Qs

Python End of Topic Quiz

Python End of Topic Quiz

8th Grade - University

15 Qs

Python Loops

Python Loops

University

17 Qs

C-Py QUIZ | ROUND 1

C-Py QUIZ | ROUND 1

University

20 Qs

Computational Thinking in Python[Quiz 2]

Computational Thinking in Python[Quiz 2]

University

15 Qs

Python Quiz Ver- 1.3

Python Quiz Ver- 1.3

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?