Data Science Imp Questions 2
Data Science Imp Questions 2
a) What is a Series and how is it different from a 1-D array, a list, and a dictionary.
b) Differentiate Supervised and Unsupervised learning techniques
c) Specify any four python Libraries and their applications.
d) Describe any five data collection strategies
e) Give 4 ways of creating Numpy arrays.
f) Explain four major tasks in data pre-processing
Q.2 (a) Explain the roles and responsibilities of any five Data Science professionals. (5)
(b) What are the various types of Data in Statistics? Explain with example (5)
Q3. (a) What is Data Science Lifecycle? Explain all stages with diagram. (5)
(b) What are missing values? What are the strategies to handle them? Explain
four methods of Imputation by giving example of each. (5)
Q6 Give 4 ways of creating series by using List, arrays, dictionary, scalar value. (10)
a) Write python code to create the following series
101 Harsh
102 Arun
103 Ankur
104 Harpal
105 Divya
106 Jeet
b) Show details of 1st 3 employees using head function
c) Show details of last 3 employees using tail function
d) Show details of 1st 3 employees without using head function
e) Show details of last 3 employees without using tail function
f) Show value of index no 102.
g) Show 2nd to 4th records.
h) Show values of index no=101,103,105.
i) Show details of “Arun”
OR
Q8. Create the following DataFrame Sales containing year-wise sales figures for five salespersons in INR. Use
the years as column labels, and salesperson names as row labels. (10)