0% found this document useful (0 votes)
14 views43 pages

Data Science CIVIL

Uploaded by

Ayush Singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views43 pages

Data Science CIVIL

Uploaded by

Ayush Singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 43

12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Dashboard My courses Dr. Chayan Gupta Data Science 110520 Theory Data Science Final Quiz

Started on Saturday, 3 December 2022, 1:41 PM


State Finished
Completed on Saturday, 3 December 2022, 2:22 PM
Time taken 40 mins 54 secs

Question 1
Complete

Marked out of 1.00

Which of the data structures can not be modified?

a. list

b. tuple

c. dict

d. set

Question 2
Complete

Marked out of 1.00

Output of following code: a = 2; b = 2.0; a == b

a. False

b. 1

c. True

d. Error

Question 3
Complete

Marked out of 1.00

Choose the correct output of given program: print(87//5)

a. 17.4

b. 17

c. 17.400

d. Error

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 1/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 4
Complete

Marked out of 1.00

Output of the following code: A = {}; Type(A) is

a. tuple

b. set

c. list

d. dict

Question 5
Complete

Marked out of 1.00

output of print(“hello" “world")

a. helloworld

b. Hello”world

c. hello world

d. Error

Question 6
Complete

Marked out of 1.00

Which of the following is not a type of probability sampling method?

a. Cluster sampling

b. Convenience sampling

c. Stratified sampling

d. Simple random sampling

Question 7
Complete

Marked out of 1.00

Write the output of the following code: print((3+1)**5)

a. 244

b. 1024

c. 20

d. Error

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 2/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 8
Complete

Marked out of 1.00

In if statement: X=100; Y= 500; if y>x; print(Y is greater than a), What is the missing in above code?

a. “” mark not used in the statement Y is not greater than a

b. : is not use after y>x

c. Both b &c correct

d. X=100

Question 9
Complete

Marked out of 1.00

Which elements signify the “key” in the given code: MITS= {“CE”: 120, “ME”: 100, “EE”: 80, “CS”: 115}

a. MITS

b. 120, 100, 80, 115

c. CE, ME, EE, CS

d. None of these

Question 10
Complete

Marked out of 1.00

Which can greatly impact the statistical analyses and skew the results of any hypothesis tests?

a. Asymptotic

b. Outlier

c. Binomial distribution

d. Unimodal

Question 11
Complete

Marked out of 1.00

Output of the following code: a = 1; b =True; type(a) & type(b) are respectively

a. int , bool

b. int, str

c. Output will be error

d. bool, str

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 3/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 12
Complete

Marked out of 1.00

After importing numpy as 'import numpy as np'? Which of the following statement is correct?

a. n1=nump.arrange((row,column),value)

b. n=np.full((row,column),value)

c. n1=nump.full((row,column),value)

d. n=np.arrange(value,(row,column))

Question 13
Complete

Marked out of 1.00

In python list are written under

a. “ ”

b. {}

c. []

d. ()

Question 14
Complete

Marked out of 1.00

The _____ is a better measure of central tendency than the _____ when the distribution of data values is
skewed or when there are clear outliers.

a. Median, mean

b. Mean, median

c. Mean, mode

d. Mode, mean

Question 15
Complete

Marked out of 1.00

What is the keyword to define a function

a. Return

b. Def

c. DEF

d. def

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 4/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 16
Complete

Marked out of 1.00

To determine how many item a list has for that which function we use

a. len()

b. type()

c. shape()

d. item()

Question 17
Complete

Marked out of 1.00

Which of the following type of chart is supported by pyplot?

a. Pie

b. All of the Above

c. Boxplot

d. Histogram

Question 18
Complete

Marked out of 1.00

A variable represents the weight of a person. What is the level of measurement?

a.

b.

c.

d.

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 5/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 19
Complete

Marked out of 1.00

What does frequency indicate?

a. How spread out the data is

b. Number of occurrences of a particular value in a dataset

c. Size of the sample drawn from a population

d. Range of the values present in the dataset

Question 20
Complete

Marked out of 1.00

Which is the second most represented age group according to the histogram?

a. 67-82

b. 37-52

c. 52-67

d. 22-37

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 6/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 21
Complete

Marked out of 1.00

Given d={'k1':[1,2,3]}
What is the output of d['k1'][1]

a. 2

b. 1

c. error

d. 3

Question 22
Complete

Marked out of 1.00

A variable represents the gender of a person. What type of data does it represent?

a.

b.

c.

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 7/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 23
Complete

Marked out of 1.00

Which of the following can be stated about the sample based on the distribution graph?

a.

b.

c.

d.

Question 24
Complete

Marked out of 1.00

Which of the following is true for a normal distribution?

a. Mean and median are equal

b. Mean and mode are equal

c. Mode and median are equal

d. Mean, median, and mode are equal

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 8/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 25
Complete

Marked out of 1.00

Which one of the following is the real world challenge faced by the data scientist?

a. All of the above

b. Data integration is complex task

c. Unstructured data is hard to analyze

d. Data quality is not in set standards

Question 26
Complete

Marked out of 1.00

A chart represent the _________ between different elements of data categories

a. Difference

b. Relationship

c. Variance

d. Similarity

Question 27
Complete

Marked out of 1.00

If s='Sammy' what is the output of s[2:]?

a. 'amm'

b. 'ammy'

c. 'mmy'

d. 'Sam'

Question 28
Complete

Marked out of 1.00

Problems that predict real values outputs are called _____

a. Greedy Problems

b. Regression Problems

c. Real Valued Problems

d. Classification Problems

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 9/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 29
Complete

Marked out of 1.00

The value of _________ chart is calculated in terms of percentage.

a. Pie

b. Histogram

c. Boxplot

d. Bar

Question 30
Complete

Marked out of 1.00

What is the result of:


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

a.

b.

c.

d.

Question 31
Complete

Marked out of 1.00

24.Can tuple be used as dictionary key in python?

a. False

b. True

c. Tuple is not used in python

d. None of the above

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 10/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 32
Complete

Marked out of 1.00

Which one of the following is immutable data type?

a. set

b. dict

c. int

d. list

Question 33
Complete

Marked out of 1.00

Text Analytics, also referred to as Text Mining?

a. False

b. True

Question 34
Complete

Marked out of 1.00

Least Square Method uses _.

a. Linear regression

b. None of the mentioned above

c. Linear polynomial

d. Linear sequence

Question 35
Complete

Marked out of 1.00

Which of the following is not the kind data science job role?

a. Statistician

b. Business analyst

c. Data scientist

d. System analyst

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 11/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 36
Complete

Marked out of 1.00

Which of the following steps are included in Data Science process?

a. Data Discovery

b. Data preparation

c. Model planning

d. All of the above

Question 37
Complete

Marked out of 1.00

Which of the following is not used as loop in Python?

a. do-while loop

b. while loop

c. for loop

d. None of the above

Question 38
Complete

Marked out of 1.00

Which of the following is True regarding loops in Python?

a. Loops should be ended with keyword "end".

b. Keyword "continue" is used to continue with the remaining statements inside the loop.

c. No loop can be used to iterate through the elements of strings.

d. Keyword "break" can be used to bring control out of the current loop.

Question 39
Complete

Marked out of 1.00

Suppose a tuple contains 10 elements. How can you set the 5th element of the tuple to 'Hello'?

a. arr[5] = 'Hello'

b. arr[4] = 'Hello'

c. Elements of tuple cannot be changed

d. arr(4) = 'Hello'

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 12/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 40
Complete

Marked out of 1.00

Which of the following options will give an error if set1={2,3,4,5}?

a. set1=set1+{7}

b. All of the above

c. print(set1[0])

d. set1[0]=9

Question 41
Complete

Marked out of 1.00

Which of the following function is used to know the data type of a variable in Python?

a. datatype()

b. type()

c. vartype()

d. typeof()

Question 42
Complete

Marked out of 1.00

Python programming language allows to use one loop inside another loop known as?

a. switch

b. for all

c. nested

d. for each

Question 43
Complete

Marked out of 1.00

Which one of the following is a valid Python if statement :

a. if (a => 22)

b. if a >= 22

c. if (a >= 2)

d. if a>=2 :

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 13/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 44
Complete

Marked out of 1.00

Which of the following is not a type of argument in Python?

a. Keyword

b. Positional

c. None of these

d. Variable argument count

Question 45
Complete

Marked out of 1.00

What will be the output of above Python code: str1="6/4"; print("str1")

a. str1

b. 1.5

c. 1

d. 6/4

Question 46
Complete

Marked out of 1.00

Which of the following option is not a core data type in the python language?

a. Dictionary

b. All of the above

c. Class

d. Lists

Question 47
Complete

Marked out of 1.00

Which of the following syntaxes is used to generate 100 random variables from a t-distribution with df = 10?

a. stats.t.rvs(df=10, size=100)

b. stats.t.pdf(df=10, size=100)

c. stats.t.pmf(df=10, size=100)

d. stats.t.rand(df=10, size=100)

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 14/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

Question 48
Complete

Marked out of 1.00

Which plotting technique is used for continuous data?

a. Histogram

b. Bar plot

c. Heat map

d. Regression plot

Question 49
Complete

Marked out of 1.00

In hypothesis testing, the proposed model is built on:

a. Entire dataset

b. Small subset

c. Test dataset

d. Training dataset

Question 50
Complete

Marked out of 1.00

{1,2,3,4} is an example of a Set.

Select one:
True

False

Previous activity
◄ One minute paper writing

Jump to...

Next activity
Syllabus of Data Science1 ►

Stay in touch
Madhav institute of Technology & Science , Gwalior, M.P.

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 15/16
12/3/22, 2:23 PM Data Science Final Quiz: Attempt review

 http://mitsgwalior.in/
 Phone :0751-2409300
 pro@mitsgwalior.in

    

 Get the mobile app

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291399&cmid=22126&showall=1 16/16

Dashboard My courses Dr. Chayan Gupta Data Science 110520 Theory Data Science Final Quiz


Started on Saturday, 3 December 2022, 1:41 PM

State Finished
Completed on Saturday, 3 December 2022, 2:22 PM

Time taken 40 mins 54 secs

 Question 1 Which of the data structures can not be modified?


Correct
 a. list
Marked out of
1.00
 b. tuple 

 c. dict

d. set

Question 2 Output of following code: a = 2; b = 2.0; a == b


Incorrect

Marked out of a. False 


1.00
b. 1

c. True

d. Error

Question 3 Choose the correct output of given program: print(87//5)


Correct

Marked out of a. 17.4


1.00
b. 17 

c. 17.400

d. Error

Question 4 Output of the following code: A = {}; Type(A) is


Incorrect

Marked out of a. tuple


1.00
b. set 

c. list

d. dict


Question 5 output of print(“hello" “world")
Incorrect

Marked out of a. helloworld


1.00
 b. Hello”world 

c. hello world

d. Error

 Question 6 Which of the following is not a type of probability sampling


Correct method?
 Marked out of
1.00 a. Cluster sampling

b. Convenience sampling 

 c. Stratified sampling

d. Simple random sampling



Question 7 Write the output of the following code: print((3+1)**5)
Incorrect

Marked out of a. 244
1.00
b. 1024

c. 20 

d. Error

Question 8 In if statement: X=100; Y= 500; if y>x; print(Y is greater than a),


Correct What is the missing in above code?
Marked out of
1.00 a. “” mark not used in the statement Y is not greater than a

b. : is not use after y>x

c. Both b &c correct 

d. X=100

Question 9 Which elements signify the “key” in the given code: MITS= {“CE”:
Correct 120, “ME”: 100, “EE”: 80, “CS”: 115}
Marked out of
1.00 a. MITS

b. 120, 100, 80, 115

c. CE, ME, EE, CS 

d. None of these


Question 10 Which can greatly impact the statistical analyses and skew the
Correct results of any hypothesis tests?
Marked out of
1.00 a. Asymptotic

b. Outlier 

c. Binomial distribution

 d. Unimodal


Question 11 Output of the following code: a = 1; b =True; type(a) & type(b)
 Correct are respectively
Marked out of
 1.00 a. int , bool 

b. int, str

c. Output will be error

 d. bool, str


Question 12 After importing numpy as 'import numpy as np'? Which of the

Incorrect following statement is correct?
Marked out of
1.00 a. n1=nump.arrange((row,column),value)

b. n=np.full((row,column),value)

c. n1=nump.full((row,column),value)

d. n=np.arrange(value,(row,column)) 

Question 13 In python list are written under


Incorrect

Marked out of a. “ ” 
1.00
b. {}

c. []

d. ()

Question 14 The _____ is a better measure of central tendency than the


Correct _____ when the distribution of data values is skewed or when
Marked out of there are clear outliers.
1.00

a. Median, mean 

b. Mean, median

c. Mean, mode

d. Mode, mean


Question 15 What is the keyword to define a function
Correct

Marked out of a. Return


1.00
 b. Def

c. DEF

d. def 

 Question 16 To determine how many item a list has for that which function
Correct we use
 Marked out of
1.00 a. len() 

b. type()

 c. shape()

d. item()


Question 17 Which of the following type of chart is supported by pyplot?
Correct

Marked out of a. Pie
1.00
b. All of the Above 

c. Boxplot

d. Histogram

Question 18 A variable represents the weight of a person. What is the level of


Correct measurement?
Marked out of
1.00 a.

b.

c.

d. 

Question 19 What does frequency indicate?


Correct

Marked out of a. How spread out the data is


1.00
b. Number of occurrences of a particular value in a 
dataset

c. Size of the sample drawn from a population

d. Range of the values present in the dataset


Question 20 Which is the second most represented age group according to
Correct the histogram?
Marked out of
1.00

a. 67-82

b. 37-52

c. 52-67 

d. 22-37

Question 21
Given d={'k1':[1,2,3]}
Correct
What is the output of d['k1'][1]
Marked out of
1.00

a. 2 

b. 1

c. error

d. 3


Question 22 A variable represents the gender of a person. What type of data
Correct does it represent?
Marked out of
1.00 a.

b.

 c. 

 Question 23 Which of the following can be stated about the sample based
Incorrect on the distribution graph?
 Marked out of
1.00

a.

b.

c.

d. 


Question 24 Which of the following is true for a normal distribution?
Correct

Marked out of a. Mean and median are equal


1.00

b. Mean and mode are equal

 c. Mode and median are equal

 d. Mean, median, and mode are equal 


Question 25 Which one of the following is the real world challenge faced by

Correct the data scientist?
Marked out of
 1.00 a. All of the above 

b. Data integration is complex task



c. Unstructured data is hard to analyze

d. Data quality is not in set standards

 Question 26 A chart represent the _________ between different elements


Correct of data categories
Marked out of
1.00 a. Difference

b. Relationship 

c. Variance

d. Similarity

Question 27 If s='Sammy' what is the output of s[2:]?


Correct

Marked out of a. 'amm'


1.00
b. 'ammy'

c. 'mmy' 

d. 'Sam'

Question 28 Problems that predict real values outputs are called _____
Incorrect

Marked out of a. Greedy Problems


1.00
b. Regression Problems 

c. Real Valued Problems

d. Classification Problems


Question 29 The value of _________ chart is calculated in terms of
Correct percentage.
Marked out of
1.00 a. Pie 

b. Histogram

c. Boxplot

 d. Bar


Question 30
What is the result of:
 Correct
set([1,1,2,3])
Marked out of
 1.00

 a.

 b. 

 c.

 d.

Question 31 24.Can tuple be used as dictionary key in python?


Correct

Marked out of a. False


1.00
b. True 

c. Tuple is not used in python

d. None of the above

Question 32 Which one of the following is immutable data type?


Correct

Marked out of a. set


1.00
b. dict

c. int 

d. list

Question 33 Text Analytics, also referred to as Text Mining?


Incorrect

Marked out of a. False


1.00
b. True 


Question 34 Least Square Method uses _.
Incorrect

Marked out of a. Linear regression


1.00
 b. None of the mentioned above 

c. Linear polynomial

d. Linear sequence

 Question 35 Which of the following is not the kind data science job role?
Correct
 Marked out of a. Statistician
1.00
b. Business analyst

c. Data scientist
 d. System analyst 

Question 36 Which of the following steps are included in Data Science



Correct process?
Marked out of

1.00 a. Data Discovery

b. Data preparation

c. Model planning

d. All of the above 

Question 37 Which of the following is not used as loop in Python?


Correct

Marked out of a. do-while loop 


1.00
b. while loop

c. for loop

d. None of the above

Question 38 Which of the following is True regarding loops in Python?


Correct

Marked out of a. Loops should be ended with keyword "end".


1.00
b. Keyword "continue" is used to continue with the
remaining statements inside the loop.

c. No loop can be used to iterate through the elements of


strings.

d. Keyword "break" can be used to bring control out of 


the current loop.


Question 39 Suppose a tuple contains 10 elements. How can you set the 5th
Incorrect element of the tuple to 'Hello'?
Marked out of
1.00 a. arr[5] = 'Hello'

b. arr[4] = 'Hello' 

c. Elements of tuple cannot be changed

 d. arr(4) = 'Hello'


Question 40 Which of the following options will give an error if set1={2,3,4,5}?
 Correct

Marked out of a. set1=set1+{7}


 1.00
b. All of the above 

 c. print(set1[0])

d. set1[0]=9


Question 41 Which of the following function is used to know the data type of
Correct a variable in Python?

Marked out of
1.00 a. datatype()

b. type() 

c. vartype()

d. typeof()

Question 42 Python programming language allows to use one loop inside


Correct another loop known as?
Marked out of
1.00 a. switch

b. for all

c. nested 

d. for each

Question 43 Which one of the following is a valid Python if statement :


Correct

Marked out of a. if (a => 22)


1.00
b. if a >= 22

c. if (a >= 2)

d. if a>=2 : 


Question 44 Which of the following is not a type of argument in Python?
Incorrect

Marked out of a. Keyword


1.00
 b. Positional 

c. None of these

d. Variable argument count

 Question 45 What will be the output of above Python code: str1="6/4";


Correct print("str1")
 Marked out of
1.00 a. str1 

b. 1.5

 c. 1

d. 6/4


Question 46 Which of the following option is not a core data type in the
Correct python language?

Marked out of
1.00 a. Dictionary

b. All of the above

c. Class 

d. Lists

Question 47 Which of the following syntaxes is used to generate 100 random


Correct variables from a t-distribution with df = 10?
Marked out of
1.00 a. stats.t.rvs(df=10, size=100) 

b. stats.t.pdf(df=10, size=100)

c. stats.t.pmf(df=10, size=100)

d. stats.t.rand(df=10, size=100)

Question 48 Which plotting technique is used for continuous data?


Incorrect

Marked out of a. Histogram


1.00
b. Bar plot 

c. Heat map

d. Regression plot


Question 49 In hypothesis testing, the proposed model is built on:
Incorrect

Marked out of a. Entire dataset


1.00

b. Small subset

 c. Test dataset 

 d. Training dataset


Question 50 {1,2,3,4} is an example of a Set.

Correct

Marked out of Select one:


 1.00
True 

 False


12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Dashboard My courses Dr. Chayan Gupta Data Science 110520 Theory Data Science Final Quiz

Started on Saturday, 3 December 2022, 7:44 PM


State Finished
Completed on Saturday, 3 December 2022, 8:06 PM
Time taken 22 mins 2 secs

Question 1
Correct

Marked out of 1.00

to create histogram pyplot provides

a. hist() 

b. histg()

c. histogram()

d. histo()

Question 2
Incorrect

Marked out of 1.00

Which of the following is incorrect about matplotlib

a. Integration with flak and django

b. No high level abstraction

c. All the above 

d. Plot a variety of graph

Question 3
Correct

Marked out of 1.00

What is the use of “#” notation in python

a. Writing a statement

b. Comments 

c. Information

d. To highlight something

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 1/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Question 4
Correct

Marked out of 1.00

What is a collection of functions and methods that allows you/user to perform many actions without writing
complex code?

a. Python library 

b. Python literals

c. Python functions

d. None of the above

Question 5
Correct

Marked out of 1.00

Which of the following is not a type of probability sampling method?

a. Simple random sampling

b. Cluster sampling

c. Convenience sampling 

d. Stratified sampling

Question 6
Correct

Marked out of 1.00

Which of the following is categorized as sequence type data type:

a. dict

b. int, float, complex

c. list, tuple, range 

d. set

Question 7
Incorrect

Marked out of 1.00

If the number of keyword argument is unknown what we add before the parameter in variable length argument
type:

a. %

b. #

c. : 

d. *

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 2/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Question 8
Correct

Marked out of 1.00

Which can greatly impact the statistical analyses and skew the results of any hypothesis tests?

a. Unimodal

b. Binomial distribution

c. Outlier 

d. Asymptotic

Question 9
Incorrect

Marked out of 1.00

Output of : min(max(10,18,15),-1,-2,-3)

a. -1 

b. Error

c. -3

d. 10

Question 10
Correct

Marked out of 1.00

if a = “summer"; b = “season"; Output of a[:3]+b[-3:] is

a. sumson 

b. mersea

c. Error

d. sum son

Question 11
Incorrect

Marked out of 1.00

output of following code: Print(3*5) gives

a. Error

b. 15

c. none 

d. 15.0 3

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 3/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Question 12
Correct

Marked out of 1.00

How to convert set to frozen set

a. frozenset() 

b. Frozenset()

c. None of these

d. Frozen()

Question 13
Incorrect

Marked out of 1.00

Output of the following code: A = {}; Type(A) is

a. set

b. dict

c. tuple 

d. list

Question 14
Incorrect

Marked out of 1.00

Arrange the following in correct sequence of data science life cycle. (1) Pattern evaluation, (2) Machine learning
algorithm, (3) Knowledge representation, (4) Data acquisition, (5) Data preprocessing

a. 45213

b. 23145

c. 34152 

d. 13452

Question 15
Incorrect

Marked out of 1.00

Output of : max(min(12,34,False),-12,-34)

a. 12

b. -34 

c. False

d. Error

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 4/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Question 16
Incorrect

Marked out of 1.00

The elif keyword in python used when

a. If the previous condition were not true

b. All the above 

c. If the previous condition were true

d. If anything which isn’t caught by preceding condition

Question 17
Correct

Marked out of 1.00

A model can learn based on the rewards it received for its previous action is known as

a. Concept learning

b. Unsupervised learning

c. Reinforcement learning 

d. Supervised learning

Question 18
Correct

Marked out of 1.00

Which one of the following is the benefit of python?

a. All of the above 

b. Easy to learn

c. open source

d. large library

Question 19
Correct

Marked out of 1.00

box plot is visual representation of statistical ____summary of given dataset

a. Three number

b. Seven number

c. Five number 

d. Nine number

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 5/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Question 20
Correct

Marked out of 1.00

Which one of the following is the real world challenge faced by the data scientist?

a. Unstructured data is hard to analyze

b. All of the above 

c. Data quality is not in set standards

d. Data integration is complex task

Question 21
Correct

Marked out of 1.00

plot which is used to given statistical summary is

a. Bar

b. Line

c. Histogram

d. Box plot 

Question 22
Correct

Marked out of 1.00

What is the sequential flow of Data Analytics?

a. Data modeling, acquisition, exploration, wrangling, and visualization

b. Data wrangling, exploration, modeling, acquisition, and visualization

c. Data exploration, acquisition, modeling, wrangling, and visualization

d. Data acquisition, wrangling, exploration, modeling, and visualization 

Question 23
Correct

Marked out of 1.00

Which of the data structures can not be modified?

a. tuple 

b. list

c. dict

d. set

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 6/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Question 24
Correct

Marked out of 1.00

Which Python library is the main machine learning library?

a. Scikit-learn 

b. NumPy

c. Matplotlib

d. Pandas

Question 25
Incorrect

Marked out of 1.00

What will be the output of the following code?

a. [‘Miami', ‘Paris'] 

b. [‘NYC', 'Madrid']

c. [‘London', 'Madrid']

d. [‘Miami', 'Madrid']

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 7/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Question 26
Correct

Marked out of 1.00

Which of the following can be stated about the sample based on the distribution graph?

a.

b. 

c.

d.

Question 27
Correct

Marked out of 1.00

A chart represent the _________ between different elements of data categories

a. Relationship 

b. Similarity

c. Variance

d. Difference

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 8/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Question 28
Correct

Marked out of 1.00

The most common issue when using ML is

a. Poor Data Quality 

b. Lack of skilled resources

c. Inadequate Infrastructure

d. None of these

Question 29
Correct

Marked out of 1.00

Given d={'k1':[1,2,3]}
What is the output of d['k1'][1]

a. 3

b. 1

c. 2 

d. error

Question 30
Correct

Marked out of 1.00

What is the goal of data acquisition?

a. Collect data from various data sources

b. All of the above 

c. Scrape the web through web APIs

d. Collect web server logs

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 9/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Question 31
Correct

Marked out of 1.00

Which one of the following is immutable data type?

a. set

b. list

c. int 

d. dict

Question 32
Correct

Marked out of 1.00

Which one of the following is a valid Python if statement :

a. if (a >= 2)

b. if a >= 22

c. if a>=2 : 

d. if (a => 22)

Question 33
Incorrect

Marked out of 1.00

Which of the following is a subset of machine learning?

a. All of the above 

b. SciPy

c. Deep Learning

d. Numpy

Question 34
Incorrect

Marked out of 1.00

Machine Learning explores the building and study of algorithms which learn to make predictions about ——–

a. intelligent data

b. Unforeseen data 

c. None of the above

d. future data

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 10/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Question 35
Incorrect

Marked out of 1.00

A graph that uses vertical bars to represent data is called a __.

a. Line graph

b. Scatter plot

c. All of the mentioned above 

d. Bar graph

Question 36
Incorrect

Marked out of 1.00

Data Science discovers hidden ———-

a. All of the above 

b. Information

c. Hidden

d. Patterns

Question 37
Incorrect

Marked out of 1.00

Data Analysis is a process of

a. Cleaning data

b. Transforming data

c. All of Above 

d. Inspecting data

Question 38
Correct

Marked out of 1.00

Which of the following function is used to know the data type of a variable in Python?

a. datatype()

b. vartype()

c. typeof()

d. type() 

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 11/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Question 39
Incorrect

Marked out of 1.00

Least Square Method uses _.

a. Linear polynomial

b. Linear sequence

c. Linear regression 

d. None of the mentioned above

Question 40
Correct

Marked out of 1.00

Which among the following are mutable objects in Python? (i) List; (ii) Integer; (iii) String; (iv) Tuple

a. iii and iv only

b. i and ii only

c. i only 

d. iv only

Question 41
Correct

Marked out of 1.00

Which of the following data type is used to store values in Key & Value format?

a. Set

b. Dictionary 

c. Tuple

d. List

Question 42
Correct

Marked out of 1.00

What will be the output of above Python code: str1="6/4"; print("str1")

a. 1

b. 1.5

c. str1 

d. 6/4

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 12/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Question 43
Incorrect

Marked out of 1.00

Which of the following is not a type of argument in Python?

a. Keyword 

b. Variable argument count

c. Positional

d. None of these

Question 44
Correct

Marked out of 1.00

Python programming language allows to use one loop inside another loop known as?

a. nested 

b. for all

c. switch

d. for each

Question 45
Correct

Marked out of 1.00

Which of the following Python code will create a set? (i) set1=set((0,9,0)); (ii) set1=set([0,2,9]); (iii) set1={}

a. (ii), (iii)

b. (iii)

c. All of the above 

d. (i) and (ii)

Question 46
Correct

Marked out of 1.00

If s='Sammy' what is the output of s[2:]?

a. 'ammy'

b. 'amm'

c. 'Sam'

d. 'mmy' 

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 13/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

Question 47
Incorrect

Marked out of 1.00

Is this statement True or False? Dictionaries retain order and are a sequence.

Select one:
True 

False

Question 48
Incorrect

Marked out of 1.00

Is this statement True or False? Dictionaries are immutable.

Choose the answer below.

Select one:
True 

False

Question 49

Correct

Marked out of 1.00

Which one of the following is the real world challenge faced by the data scientist?

a. Data quality is not in set standards

b. Data integration is complex task

c. All of the above 

d. Unstructured data is hard to analyze

Question 50
Correct

Marked out of 1.00

A model can learn based on the rewards it received for its previous action is known as

a. Supervised learning

b. Reinforcement learning 

c. Concept learning

d. Unsupervised learning

Previous activity

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 14/15
12/3/22, 8:14 PM Data Science Final Quiz: Attempt review

◄ One minute paper writing

Jump to...

Next activity

Syllabus of Data Science1 ►

Stay in touch
Madhav institute of Technology & Science , Gwalior, M.P.
 http://mitsgwalior.in/
 Phone :0751-2409300
 pro@mitsgwalior.in

    

 Get the mobile app

op2020.mitsgwalior.in/mod/quiz/review.php?attempt=291457&cmid=22126&showall=1 15/15

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy