Python Quiz

Python Quiz

Professional Development

7 Qs

quiz-placeholder

Similar activities

C Programming

C Programming

Professional Development

10 Qs

C Looping/Conditional MCQs

C Looping/Conditional MCQs

Professional Development

10 Qs

เเบบทดสอบโปรเเกรมเบื่องต้น

เเบบทดสอบโปรเเกรมเบื่องต้น

Professional Development

10 Qs

Python-quiz2

Python-quiz2

University - Professional Development

11 Qs

Квиз Искусственный интеллект и образование

Квиз Искусственный интеллект и образование

Professional Development

10 Qs

Dataverse Introduction

Dataverse Introduction

Professional Development

10 Qs

SQL Server - Transact SQL e Desenvolvimento [DEV]

SQL Server - Transact SQL e Desenvolvimento [DEV]

Professional Development

11 Qs

Python-Quiz-Basic-Datatypes

Python-Quiz-Basic-Datatypes

12th Grade - Professional Development

10 Qs

Python Quiz

Python Quiz

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Nitin CSE

Used 1+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the maximum length of a Python identifier?

No fixed length

16

32

48

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code snippet?

print(2**3 + (5 + 6)**(1 + 1))

128

129

8

error

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the datatype of the var in the below code snippet?

var = 10

print(type(var))

var = "Hello"

print(type(var))

str and int

int and int

str and str

int and str

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How is a code block indicated in Python?

bracket

indentation

key

No answer

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following concepts is not a part of Python?

Pointers

Loop

Dynamic Typing

All

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

........................loop is not supportes in python

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

*args stored as .................. data types