Grade 7 Python Practical Viva 2022-2023

Grade 7 Python Practical Viva 2022-2023

6th - 8th Grade

5 Qs

quiz-placeholder

Similar activities

Print Function

Print Function

7th Grade

7 Qs

Python Programming

Python Programming

7th - 9th Grade

10 Qs

Python - Week 1

Python - Week 1

8th - 10th Grade

10 Qs

Python เบื้องต้น

Python เบื้องต้น

7th - 9th Grade

10 Qs

Python Codehs

Python Codehs

7th - 12th Grade

10 Qs

KODEKIDDO HACK #MLH3

KODEKIDDO HACK #MLH3

4th Grade - University

10 Qs

Lý thuyết về Python

Lý thuyết về Python

3rd Grade - University

10 Qs

Python

Python

1st - 10th Grade

10 Qs

Grade 7 Python Practical Viva 2022-2023

Grade 7 Python Practical Viva 2022-2023

Assessment

Quiz

Computers

6th - 8th Grade

Medium

Created by

Ahmed Numair

Used 8+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would be the output of the following code?

for i in range( 11, 100 ):

if i % 10 == 0:

print( i )

20, 30, 40, 50, 60, 70, 80, 90

11 till 99

10, 20, 30, 40, 50, 60, 70, 80, 90, 100

20, 30, 40, 50, 60, 70, 80, 90, 100

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What syntax can you use to insert a line break between strings so that they appear over multiple lines?
/
\n
\l
n

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is printed when this program is run:

days = -5 

if days > 6:      

print(“Month”)

else:      

print(“Week”)

Month

Week

Error

0

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To display the following on screen Hello World! the following command should be used:

print(Hello World!)

print("Hello World" + !)

print("Hello World!")

print"(Hello World!)"

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The code you use to receive and input from the keyboard

enter()

add()

receive()

input()