unit1

unit1

University

15 Qs

quiz-placeholder

Similar activities

NumPy

NumPy

University

20 Qs

Python Variables

Python Variables

University

15 Qs

COSC_1436_ MOD-01 & MOD-02 Quiz

COSC_1436_ MOD-01 & MOD-02 Quiz

University

16 Qs

Typing

Typing

KG - University

12 Qs

CodeHS Basic Data Structures in Python

CodeHS Basic Data Structures in Python

9th Grade - University

10 Qs

Pandas Series

Pandas Series

University

20 Qs

PP_Lab_ESE_Batch2_Quiz_2023_24

PP_Lab_ESE_Batch2_Quiz_2023_24

University

10 Qs

Object Oriented Programming Quizz

Object Oriented Programming Quizz

University

10 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?