Day1-Intro-Python-Pandas

Day1-Intro-Python-Pandas

3rd Grade

6 Qs

quiz-placeholder

Similar activities

Business Analytics Python 01

Business Analytics Python 01

1st - 3rd Grade

10 Qs

GDSC Info Session

GDSC Info Session

3rd Grade

10 Qs

How much do you know about technical vocabulary?

How much do you know about technical vocabulary?

3rd Grade

6 Qs

quiz pelatihan data viz

quiz pelatihan data viz

1st - 3rd Grade

10 Qs

PYTHON (FOR LOOP)

PYTHON (FOR LOOP)

1st - 10th Grade

10 Qs

Advance Python

Advance Python

KG - Professional Development

10 Qs

Python Math

Python Math

1st - 12th Grade

10 Qs

python quiz

python quiz

1st - 5th Grade

10 Qs

Day1-Intro-Python-Pandas

Day1-Intro-Python-Pandas

Assessment

Quiz

Computers

3rd Grade

Hard

Created by

Carlin CHU

Used 4+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which one is not the python built-in data type?

Boolean

List

String

Numerics

None of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which one is NOT the property of a Python 'List'?

List is used to store multiple items in a single variable.

List can store both one number and one string in a single variable.

The values in a List cannot be changed.

All of the above.

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What is the output of the following python code?

r=range(1,5,2)

print(list(r))

[1,2,3,4,5]

[1,2,3,4]

[1,3,5]

[1,3]

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What is the output of the following python code?

X=['CUHK', 1, 'Business School', 2]

print(X[2][1])

U

u

1

B

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which Pandas function is used to open a data file?

pandas.to_csv()

pandas.read_csv()

pandas.open_csv()

pandas.load_csv()

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

Which one is the python code for saving data to an external file in Pandas?

Pandas.to_csv()

Pandas.save_csv()

Pandas.savedata()

All of the above