Grade 6 - INTRODCUTION TO PYTHON

Grade 6 - INTRODCUTION TO PYTHON

6th Grade

9 Qs

quiz-placeholder

Similar activities

Anime

Anime

KG - University

10 Qs

Truyền thuyết về Overwatch

Truyền thuyết về Overwatch

KG - Professional Development

13 Qs

CMPF114 - Chapter 2 - Part 1

CMPF114 - Chapter 2 - Part 1

1st Grade - University

5 Qs

Word Topic 7 - MLA Formatting

Word Topic 7 - MLA Formatting

6th Grade

14 Qs

bts

bts

KG - Professional Development

13 Qs

Evolución de las computadoras.

Evolución de las computadoras.

6th Grade

10 Qs

Youtubers

Youtubers

KG - University

12 Qs

Grade 6 - INTRODCUTION TO PYTHON

Grade 6 - INTRODCUTION TO PYTHON

Assessment

Quiz

Computers

6th Grade

Hard

Created by

SREEPRIYA COMP

Used 6+ times

FREE Resource

9 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

There are _________ keywords in python.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

___________ are the special symbols that carryout arithmetic and logical computations.

Operators

variables

data types

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Variable name cannot start with a __________

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

______________ and ________________are used to represent strings in python.

double quote(“ “)

single quote (‘ ‘) and double quote(“ “)

single quote (‘ ‘)

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

We can also press _________ key to run a program.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Predict the output for the following

a= ‘Tony stark’
      print (“my name is”, a)

My name is Tony stark

my name is Tony stark

my name is tony stark

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Predict the output for the following codes:

str1= Robert

str2='Tony'
       print(str1+str2)

NameError: name 'Robert' is not defined

RobertTony

Tony

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Predict the output for the following codes:

a=2**2

b=4**2

c=a+b

print( c)

20

4

16

9.

FILL IN THE BLANK QUESTION

1 min • 1 pt

I.   Predict the output for the following codes:

a= '10'
 b= '5'
   c=a+b
        print( c )