Learn Python Basics - Introduction

Learn Python Basics - Introduction

6th - 8th Grade

6 Qs

quiz-placeholder

Similar activities

Programming Basics Basics

Programming Basics Basics

8th Grade - University

10 Qs

Basic Python Programming_Class VIII

Basic Python Programming_Class VIII

8th Grade

10 Qs

KODEKIDDO HACK #MLH3

KODEKIDDO HACK #MLH3

4th Grade - University

10 Qs

Python Inputs

Python Inputs

7th - 8th Grade

10 Qs

Python - Printing, Variables and Syntax

Python - Printing, Variables and Syntax

8th Grade

10 Qs

Kabeer Python Assessment Quiz

Kabeer Python Assessment Quiz

7th - 12th Grade

10 Qs

Basic 256 Output Based Quiz

Basic 256 Output Based Quiz

6th Grade

9 Qs

Python Lesson 1 - Homework

Python Lesson 1 - Homework

8th - 9th Grade

10 Qs

Learn Python Basics - Introduction

Learn Python Basics - Introduction

Assessment

Quiz

Computers

6th - 8th Grade

Hard

Created by

Diwakar Tiwary

Used 4+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

0.0 is a ___?

float (floating-point number)

int (integer)

str (string)

None of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

'0.0' is a ___?

float (floating-point number)

int (integer)

str (string)

None of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which part of the following program is ignored by the computer? print('Having fun?') # print output

print('Having fun?')

# print output

Both

None

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What's the variable in the following code?

jack = 'name'

jack

'name'

name

=

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What's the output of the following code?

name = 'Jack' print(name)

print('Jackie')

Jackie

Jack

Jackie

name

Jackie

Jackie

Jack

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What's the output of this code?

var = 25.5

var = 'Jack'

var = 25.5

print(var)

25.5

25.5

Jack

25.5

Jack

None of the above