Assignment 1
Q1 State True or false:
Statement: data can be generated by machines but not by humans.
a) True
b) False
Q2 Which one of the following is not a classification of Data Analytics?
a) Diagnostic analytics
b) Deceptive analytics
c) Predictive analytics
d) Prescriptive analytics
Q3 State True or false:
Statement: Nominal scale is the lowest level of measurement and ratio scale is the
highest level of measurement.
a) True
b) False
Q4 Consider the following statements-
Statement A : With iloc, we can pass in the negative value.
Statement B : With loc, we can pass in the negative value.
a. A and B are correct
b. Both are false
c. A is correct B is false
d. B is correct A is false
Q5 For getting 3rd, 4th & 6th row of a datafile “df”in Python programming, we can write:
a. [Link][[2,3,5]]
b. [Link][[3,4,5]]
c. [Link][3,4,6]
d. None of the above
Q6 Which of the following is not a measure of dispersion?
a. Skewness
b. Kurtosis
c. Range
d. percentile
Q7 State the following true or false?
Statement: Bimodal Data sets contains more than two modes.
a. True
b. False
Q8 Bar Charts are used for :
a. Continuous data
b. Categorical data
c. both (a) & (b)
d. None of the above
Q9 Median is not applicable to
a. Ordinal
b. Interval
c. Nominal
d. None of the above
Q10 def m(data)
Diff = max(data) – min(data)
return(Diff)
The above defined data function in Python programming, will calculate the?
a. Inter quartile range
b. Mode
c. Median
d. Range
Correct ans: d)