ITIPT01 Quiz No 1

ITIPT01 Quiz No 1

University

20 Qs

quiz-placeholder

Similar activities

Application Software - Revision Quiz

Application Software - Revision Quiz

University

20 Qs

Microsoft Excel

Microsoft Excel

University

15 Qs

Microsoft Office Advandces 2016

Microsoft Office Advandces 2016

9th Grade - Professional Development

20 Qs

Arduino Loop

Arduino Loop

2nd Grade - University

20 Qs

Python List

Python List

4th Grade - University

15 Qs

Round 1 ( RHA Learner Contest )

Round 1 ( RHA Learner Contest )

University

20 Qs

Unit 1 lesson 1

Unit 1 lesson 1

University - Professional Development

15 Qs

Python MCQ

Python MCQ

University

20 Qs

ITIPT01 Quiz No 1

ITIPT01 Quiz No 1

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

J.A.G. Visuals

Used 6+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?