ML 2

ML 2

Professional Development

10 Qs

quiz-placeholder

Similar activities

Bucles

Bucles

Professional Development

8 Qs

VEX Global Variables and Channels 2

VEX Global Variables and Channels 2

Professional Development

10 Qs

OPTIK SMP 2024 REDTOP JAKARTA

OPTIK SMP 2024 REDTOP JAKARTA

Professional Development

10 Qs

Kuis Perkenalan Quizizz

Kuis Perkenalan Quizizz

Professional Development

10 Qs

[FE] Ice Breaking - Object-Oriented Programming (OOP) with Class

[FE] Ice Breaking - Object-Oriented Programming (OOP) with Class

Professional Development

10 Qs

Quiz on Arrays in C++

Quiz on Arrays in C++

Professional Development

10 Qs

[FE] Ice Breaking - JavaScript Control Flow

[FE] Ice Breaking - JavaScript Control Flow

Professional Development

10 Qs

KUIZ DIGITAL GURU

KUIZ DIGITAL GURU

Professional Development

11 Qs

ML 2

ML 2

Assessment

Quiz

Information Technology (IT)

Professional Development

Easy

Created by

Siri Chakkala

Used 5+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code?

x = [1, 2, 3]

y = x

y.append(4)

print(x)

[1, 2, 3]

[1, 2, 3, 4]

[4]

Error

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to create a NumPy array from a list?

np.array([1, 2, 3])

np.list([1, 2, 3])

np.make_array([1, 2, 3])

np.arraylist([1, 2, 3])

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is used to read a CSV file in Pandas?

pd.read_table()

pd.read_excel()

pd.read_csv()

pd.open_csv()

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the shape of the following NumPy array?

arr = np.array([[1,2,3],[4,5,6]])

(3,2)

(2,3)

(1,6)

(6,)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following plots is best suited to display the distribution of a numerical variable?

Line plot

Bar Chart

Histogram

Pie Chart

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements about Python lists and tuples is TRUE?

Tuples are mutable, lists are immutable

Lists are faster than tuples

Tuples are immutable, lists are mutable

Tuples can be modified after creation

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct syntax to plot a line graph using Matplotlib?

plot(x, y)

plt.line(x, y)

plt.plot(x, y)

graph.plot(x, y)

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?