Chapter 1

Chapter 1

1st Grade

6 Qs

quiz-placeholder

Similar activities

Python Basics

Python Basics

1st Grade

10 Qs

What is a Computer?

What is a Computer?

1st - 7th Grade

10 Qs

Python-Partie1

Python-Partie1

1st Grade

10 Qs

iav ML Study Group Pop Quiz 4

iav ML Study Group Pop Quiz 4

1st - 2nd Grade

10 Qs

Cuestionario Lvl 3

Cuestionario Lvl 3

1st - 3rd Grade

10 Qs

Taller Python

Taller Python

KG - 5th Grade

5 Qs

Python L1 Quiz 5: Random Numbers and More Turtle Features

Python L1 Quiz 5: Random Numbers and More Turtle Features

1st - 12th Grade

10 Qs

Python Level 1

Python Level 1

1st - 3rd Grade

10 Qs

Chapter 1

Chapter 1

Assessment

Quiz

Computers, Fun

1st Grade

Easy

Created by

Max Wang

Used 3+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • Ungraded

Do you use Python often?

Yes, I use it almost everyday.

I used it in the last week.

No, I haven't used it for over a month.

2.

MULTIPLE CHOICE QUESTION

1 min • Ungraded

a = [1, 2, 3, 4]

What is the data type of "a"?

dictionary

array

list

You tell me!

3.

MULTIPLE CHOICE QUESTION

1 min • Ungraded

a = [1, 2, 3, 4]

b = [5, 6, 7, 8]

what will "dict(zip(a, b))" return?

[1, 2, 3 ,4 ,5 ,6 ,7 ,8]

{1: 2, 3: 4, 5: 6, 7: 8}

[5, 6, 7, 8, 1, 2, 3, 4]

{1: 5, 2: 6, 3: 7, 4: 8}

You tell me!

4.

MULTIPLE CHOICE QUESTION

1 min • Ungraded

What is Numpy?

It's a Python package for numeric calculation.

It's a Python package for machine learning modeling.

Numpy?

5.

MULTIPLE CHOICE QUESTION

1 min • Ungraded

What is sklearn?

Python package for dataframe analysis

Python package for machine learning modeling

You tell me!

6.

MULTIPLE CHOICE QUESTION

1 min • Ungraded

Which one below is an unsupervised model?

Logistics regression

K-means

KNN

Random forest

What is "unsupervised"?