Demo2

Demo2

University

6 Qs

quiz-placeholder

Similar activities

Tọa đàm PTDL và tương lai của PTDL trong Kỷ nguyên số

Tọa đàm PTDL và tương lai của PTDL trong Kỷ nguyên số

University

7 Qs

Python Compound Data Types and their Method Set-1

Python Compound Data Types and their Method Set-1

11th Grade - University

10 Qs

Silent way

Silent way

University

10 Qs

Sesion 1 Mater Programming Python

Sesion 1 Mater Programming Python

University

8 Qs

Lecture-04

Lecture-04

University

6 Qs

HEOP Group Advising 3/28

HEOP Group Advising 3/28

University

10 Qs

Quiz Creative Thinking in ECE

Quiz Creative Thinking in ECE

University

10 Qs

Python - Data Types

Python - Data Types

12th Grade - University

11 Qs

Demo2

Demo2

Assessment

Quiz

Education

University

Hard

Created by

Jaganmohan Bondala

Used 1+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

hi

hello

hri

naadi

meedi

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be output for the folllowing code?

class test:

def __init__(self,a):

self.a=a

def display(self):

print(self.a)

obj=test()

obj.display()

Runs normally, doesn’t display anything

Displays 0, which is the automatic default value

Error as one argument is required while creating the object

Error as display function requires additional argument

3.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Select correct python packages from following

numpy

opencv

math

matplotlib

decimal

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the code shown below?

g = (i for i in range(5))

type(g)

class <’loop’>

class <‘iteration’>

class <’range’>

class <’generator’>

5.

MULTIPLE CHOICE QUESTION

30 sec • 3 pts

Which of the following is a feature of DocString?

Provide a convenient way of associating documentation with Python modules, functions, classes, and methods

All functions should have a docstring

Docstrings can be accessed by the __doc__ attribute on objects

All of the mentioned

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What is the correct file extension for Python files?

.py

.pyt

.pyth