IIT Mandi Quiz Day 2

IIT Mandi Quiz Day 2

Professional Development

10 Qs

quiz-placeholder

Similar activities

Introduccion a Matplotlib

Introduccion a Matplotlib

Professional Development

15 Qs

Jenis sisi empat

Jenis sisi empat

KG - Professional Development

15 Qs

MO_sem2

MO_sem2

1st Grade - Professional Development

5 Qs

Bedah AKM - Doorprize 1

Bedah AKM - Doorprize 1

Professional Development

10 Qs

module 3-4

module 3-4

Professional Development

10 Qs

LATIHAN

LATIHAN

Professional Development

15 Qs

Matematika itu menyenangkan

Matematika itu menyenangkan

6th Grade - Professional Development

11 Qs

Q

Q

University - Professional Development

7 Qs

IIT Mandi Quiz Day 2

IIT Mandi Quiz Day 2

Assessment

Quiz

Mathematics

Professional Development

Medium

Created by

Suraj Singh

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following methods can be used to convert a tuple `(1, 2, 3)` into a list? 


tuple.to_list()

list((1, 2, 3))

convert((1, 2, 3), list)

tuple_to_list((1, 2, 3))

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following Python expression?  

```python

[1, 2, 3] == (1, 2, 3)


True

False

None

TypeError

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function in NumPy creates an array with values from 1 to 10, excluding 10?


numpy.linspace(1, 10, 10)

numpy.arange(1, 10)

numpy.array([1, 10])

numpy.range(1, 10)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If `x = numpy.array([[1, 2], [3, 4]])`, what is the output of `x[1, :]`? 


[1,2]

[3,4]

[[1, 2], [3, 4]]

Error

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

 Which parameter in   plt.scatter()   allows you to change the size of the markers?  

marker_size

s

size

scatter_size

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which plot type in Matplotlib is most suitable for visualizing the distribution of a single variable? 

plt.boxplot()
plt.line()
plt.hist()
plt.errorbar()

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you access the third element of a Pandas Series   s   by position? 


s.iloc[2]
s.loc[2]
s.iloc[3]
s[2]

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?