Grade 6 Python Practical Viva 2022-2023

Grade 6 Python Practical Viva 2022-2023

6th - 8th Grade

5 Qs

quiz-placeholder

Similar activities

G7-SCRATCH AND PYTHON

G7-SCRATCH AND PYTHON

6th Grade

10 Qs

Python - Week 1 and 2 recap

Python - Week 1 and 2 recap

8th Grade

9 Qs

Python quiz 2

Python quiz 2

7th Grade

10 Qs

PRACTICE QUESTIONS ON BASIC LANGUAGE

PRACTICE QUESTIONS ON BASIC LANGUAGE

7th Grade

10 Qs

Python Variables

Python Variables

7th - 12th Grade

10 Qs

Programming in Java

Programming in Java

8th Grade

10 Qs

Year 7 Python Lesson 1 Recap

Year 7 Python Lesson 1 Recap

8th Grade

10 Qs

Computing Year 7 Term 2 _C.F.U 3

Computing Year 7 Term 2 _C.F.U 3

7th Grade

10 Qs

Grade 6 Python Practical Viva 2022-2023

Grade 6 Python Practical Viva 2022-2023

Assessment

Quiz

Computers

6th - 8th Grade

Hard

Created by

Ahmed Numair

Used 12+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

How many variables are there in this program?

2

3

4

5

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What data type represents a decimal number?

Float

Int

Boolean

String

3.

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!)"

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would be the output of this code?

a = 17

if a % 6 == 0:

print("Yes")

else:

print("No")

Yes

Error

0

No

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

a = 5

b = "10"

print( a + b )

510

15

Error

105