Demo2

Demo2

University

6 Qs

quiz-placeholder

Similar activities

Basic Python

Basic Python

10th Grade - University

10 Qs

DPS4013 : Summative Intro PHP

DPS4013 : Summative Intro PHP

University

10 Qs

Self-concept & Self-efficacy

Self-concept & Self-efficacy

University

11 Qs

Educ 1B

Educ 1B

University

10 Qs

Python Turtle

Python Turtle

KG - Professional Development

11 Qs

Python - Class

Python - Class

12th Grade - University

11 Qs

funciones en c++

funciones en c++

University

10 Qs

Unity 1 ДЛЯ ВСЕХ

Unity 1 ДЛЯ ВСЕХ

7th Grade - University

10 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