christ_internship

christ_internship

University

5 Qs

quiz-placeholder

Similar activities

Suprize Test - 6.10.2022

Suprize Test - 6.10.2022

University

10 Qs

Blockchain Quiz 2

Blockchain Quiz 2

6th Grade - Professional Development

10 Qs

PLANESI

PLANESI

University

10 Qs

ASTE 2 MODUL 1

ASTE 2 MODUL 1

University

10 Qs

Creating Web Pages

Creating Web Pages

University

10 Qs

Latihan soal 1

Latihan soal 1

University

10 Qs

C5 : SET 1 - PRODUCTION THEORY

C5 : SET 1 - PRODUCTION THEORY

University

10 Qs

DAA-UNIT III

DAA-UNIT III

University

10 Qs

christ_internship

christ_internship

Assessment

Quiz

Other

University

Hard

Created by

Nithin G

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • Ungraded

Did you try any coding excercises provided in this internship?

Yes

No

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following machine learning techniques use labelled data for training?

Unsupervised Learning

Supervised Learning

Reinforcement Learning

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a classification algorithm?

Logistic Regression

K-Nearest Neighbours

Support Vector Machine

Agglomerative Hierarchical Algorithm

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Write the output of the following :

>>> import pandas as pd

>>> series1 = pd.Series([10,20,30])

>>> print(series1)

Output:

0 10

1 20

2 30

dtype: int64

Output:

10

20

30

dtype: int64

Output:

0

1

2

dtype: int64

None of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How to remove "ID" column from dataframe named df.

df.drop("ID",axis=1)

df.drop("ID")

df.remove("ID")

df.remove("ID",axis=1)