11th Class Python Basics

11th Class Python Basics

11th Grade

10 Qs

quiz-placeholder

Similar activities

Python Lists and Dictionaries

Python Lists and Dictionaries

11th - 12th Grade

7 Qs

Python Brain Teaser

Python Brain Teaser

4th Grade - Professional Development

6 Qs

CodeHS U8 L

CodeHS U8 L

10th - 12th Grade

12 Qs

Python Object Types - Numbers

Python Object Types - Numbers

9th - 12th Grade

10 Qs

Quiz on Introduction to Programming with Python

Quiz on Introduction to Programming with Python

9th - 12th Grade

9 Qs

computer science

computer science

11th Grade

13 Qs

H466 - Arrays, Records, Tuples and Lists

H466 - Arrays, Records, Tuples and Lists

11th Grade - University

10 Qs

Computer Science Tuples

Computer Science Tuples

11th - 12th Grade

15 Qs

11th Class Python Basics

11th Class Python Basics

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Yogesh Kumar

Used 4+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which statement is a sequence of more than one statements?

(a) Control statement

  (b) Compound statement

  (c) Single statement

  (d) Sequence statement

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is not a valid identifier?

  (a) _Num  

  (b) Sum123

  (c) num^2

  (d) name_1

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is a keyword that has pre-defined meaning?

  (a) python  

  (b) data type

  (c) global

  (d) variable

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Choose the correct option with respect to Python.

(a)Both tuples and lists are immutable.

(b)Tuples are immutable while lists are mutable.

(c)Both tuples and lists are mutable.

(d)Tuples are mutable while lists are immutable.

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which one of the following is correct?

(a) In Python, a dictionary can have two same keys with different values.

  (b) In Python, a dictionary can have two same values with different keys.

  (c) In Python, a dictionary can have two same keys or same values but cannot have two

  same keys-value pair.

  (d) In Python, a dictionary can neither have two same keys nor two same values.

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will be the output of the following Python code?

>>> a=(1,2,(4,5))

>>> b=(1,2,(3,6,9))

>>> b>a

(a) False

  (b) True

 

(c) Error, > operator is not valid for tuples.

 

(d) Error, > operator is valid for tuples but not if there are sub-tuples.

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will be the output of the following Python code?

>>> a=(1,2,(4,5))

>>> a>a[::-1]

(a) False

  (b) True

  (c) Error, > operator is not valid for tuples.

  (d) Type Error.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?