Dataframe

Quiz
•
Computers
•
10th - 12th Grade
•
Medium

Suman Joshi
Used 156+ times
FREE Resource
12 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Full form of NaN is
Not a Null
Not a Number
Not a Numeric
None of these
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Data structures in Pandas can be mutated in the terms of ____ but not of _____.
size, value
value, size
semantic, size
none of the above
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
pandas is a:
Data Structure
Series
Dataframe
Library
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Write the output for the following:
import pandas as pd1
s = pd1.Series(5, index=[0, 1, 2, 3])
print(s)
0 5
0 5
1 5
2 5
3 5
dtype: int64
1 5
2 5
2 5
4 5
dtype: int64
0 5
1 5
2 5
3 5
dtype: object
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
write the output:
import pandas as pd1
s = pd1.Series([1,2,3])
t = pd1.Series([1,2,4])
u=s-t
print (u)
0 1
1 0
2 1
dtype: int64
0 0
1 0
2 1
dtype: int64
0 0
1 0
2 -1
dtype: float64
0 0
1 0
2 -1
dtype: int64
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
write the output:
import pandas as pd
s=pd.Series([1,2,3,4],index=['a','b','c','d'])
print(s.iloc[2:4])
b 2
c 3
d 4
dtype: int64
b 3
c 4
dtype: int64
c 3
d 4
dtype: int64
none of the above
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
write the output:
import pandas as pd
s=pd.Series([1,2,3,4],index=['a','b','c','d'])
print(s.loc['b':'d'])
b 2
c 3
d 4
dtype: float64
b 2
c 3
d 4
dtype: object
c 3
d 4
dtype: int64
b 2
c 3
d 4
dtype: int64
Create a free account and access millions of resources
Similar Resources on Wayground
10 questions
Python with DataScience

Quiz
•
7th Grade - University
9 questions
Визуализация данных в Python

Quiz
•
11th Grade
14 questions
Student Huddle 2

Quiz
•
9th Grade - University
15 questions
Practice Class 12 Pandas

Quiz
•
12th Grade
10 questions
Class-XII_IP_Revision-3

Quiz
•
12th Grade
9 questions
Checkpoint 1 revision

Quiz
•
9th - 12th Grade
7 questions
บทที่ 2 2.1 ม.3/3

Quiz
•
9th - 12th Grade
10 questions
Basic Excel Spreadsheet

Quiz
•
9th - 12th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
10 questions
1.2 OSI & TCP IP Models Quiz

Quiz
•
10th Grade
20 questions
Digital Citizenship

Quiz
•
8th - 12th Grade
35 questions
Computer Baseline Examination 2025-26

Quiz
•
9th - 12th Grade
13 questions
Problem Solving Process

Quiz
•
9th - 12th Grade
20 questions
Hardware vs. Software Quiz

Quiz
•
7th - 10th Grade
10 questions
Understanding Algorithms with Pseudocode and Flowcharts

Interactive video
•
9th - 12th Grade
19 questions
AP CSP Unit 1 Review (code.org)

Quiz
•
10th - 12th Grade