[go: up one dir, main page]

0% found this document useful (0 votes)
2 views2 pages

Assignment 1

The document contains a series of questions related to data analytics, measurement scales, and Python programming. It includes true/false statements, multiple-choice questions, and coding-related queries. The questions assess knowledge on topics such as data generation, types of analytics, and statistical measures.
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)
2 views2 pages

Assignment 1

The document contains a series of questions related to data analytics, measurement scales, and Python programming. It includes true/false statements, multiple-choice questions, and coding-related queries. The questions assess knowledge on topics such as data generation, types of analytics, and statistical measures.
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/ 2

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. df.loc[[2,3,5]]
b. df.loc[[3,4,5]]
c. df.iloc[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)

You might also like