Learn Python Basics - Introduction

Learn Python Basics - Introduction

6th - 8th Grade

6 Qs

quiz-placeholder

Similar activities

Python Plus : Rock, Paper, Scissors

Python Plus : Rock, Paper, Scissors

6th - 8th Grade

10 Qs

Advance Python

Advance Python

KG - Professional Development

10 Qs

Python Programming

Python Programming

7th - 9th Grade

10 Qs

Conditional statements

Conditional statements

7th Grade

11 Qs

KODEKIDDO HACK #MLH3

KODEKIDDO HACK #MLH3

4th Grade - University

10 Qs

Python Inputs

Python Inputs

7th - 8th Grade

10 Qs

Kabeer Python Assessment Quiz

Kabeer Python Assessment Quiz

7th - 12th Grade

10 Qs

Python Quiz (More Loops)

Python Quiz (More Loops)

KG - 6th Grade

9 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