unit1

unit1

University

15 Qs

quiz-placeholder

Similar activities

Numpy

Numpy

University

15 Qs

Envistas - Technical Quiz - Round 1

Envistas - Technical Quiz - Round 1

University

15 Qs

[Python For All] Quiz 5 - Numpy

[Python For All] Quiz 5 - Numpy

University

15 Qs

Урок Анализ данных

Урок Анализ данных

University

17 Qs

Inheritance

Inheritance

University

10 Qs

RDBMS-SQL

RDBMS-SQL

University

10 Qs

Pandas_Regex

Pandas_Regex

University

10 Qs

Python for Business Analytics

Python for Business Analytics

University

20 Qs

unit1

unit1

Assessment

Quiz

Computers

University

Hard

Created by

Ms. Deepika

Used 5+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

obj = pd.Series([4, 7, -5, 3])

obj.values

array([ 4, 7, -5, 3])

([ 4, 7, -5, 3])

array(4, 7, -5, 3)

error

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

obj = pd.Series([4, 7, -5, 3])

obj.index

o/p:?

RangeIndex(start=0, stop=4, step=1)

Range(start=0, stop=4, step=1)

RangeIndex(start=0, stop=4)

error

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

obj2 = pd.Series([4, 7, -5, 3], index=['d', 'b', 'a', 'c'])

obj2[obj2 > 0]

output:?

b 6

c 7

d 3

dtype: int64

d 6

b 7

c 3

dtype: int64

error

none

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What Are The Different Types Of Data Structures In Pandas

Data Frame

series

panel

all of the above

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

obj = pd.Series(range(3), index=['a', 'b', 'c'])

index = obj.index

index

o/p:

Index(['a', 'b', 'c'])

error

Index(['a', 'b', 'c'], dtype='object')

none

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

labels = pd.Index(np.arange(3))

labels

Index([0, 1, 2], dtype='int64')

Int64Index([0, 1, 2], dtype='int64')

Int64Index([0, 1, 2])

error

7.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

What is purpose of df.columns and df.iloc[:,:-5]

it displays the names of columns

it displays all columns except the last five columns

it displays all columns except the first five rows

it displays all columns except the last four rows

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?