0% found this document useful (0 votes)
3 views5 pages

Cat 3 QP

Uploaded by

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

Cat 3 QP

Uploaded by

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

REG NO

SRI KRISHNA POLYTECHNIC COLLEGE - COIMBATORE 641 042.


CONTINUOUS ASSESSMENT TEST- III – March - 2025
Regulations R20203
Branch / Sem.: Artificial Intelligence and Machine Learning /IV Max. Marks:100
Subject: -Data Exploration and Visualization Sub Code: 1056234440
Date / Session: 26.03.2025/ AN Duration: 3 Hrs.
Note: 1) Answer the following questions in Part A(any 10) and B(any 7)

PART - A
1 Define data transformation.
2. Define data cleansing.
3 Define data regression.
4 What are the benefits of data regression?
5 How to summarize and group a data in Python. Give example.
6 How to summarize and group a data in R. Give example.
7 Explain data aggregation with example for Python and R.
8 Explain pivot table with example for Python and R.
9 What are the types of regression?
10 Explain cross-tabulation with example for Python and R.
11 Define data visualization.

12 construct a matrix with 10 columns and 10 rowa, all filled with random numbers between 0 and
1.
PART – B
1 working with data structures in Pandas - dataframe,series
a) Import the dataset chitpole.
b)Find the number of observations in the dataset
c) Print the name of all the columns
d) How many items were ordered in total?
e)Convert item price into a float
f) What was the total revenue generated during the period of the dataset?
g) How many orders were made in the period?
2 Working with data structures in numpy – array
a) Create an 1D array with a set of integer values.
b) Create an 1D, 2D and 3D Boolean array.
c) Extract all odd numbers from the created 1D array and replace them with -1.
d) Reshape a 1D array to a 2D array with 2 rows and convert an array of arrays into a flat 1D
array.
e) Count the unique values in a numpy array.
f) Create a new column from existing columns of a numpy array.
g) Create a 2D array with a set of values and compute the row wise counts of all possible values
in an array.
REG NO

h) Get the positions of top n values from a numpy array.


3 Import Titanic dataset into python/R environment
a) Take 15 random names of psssengers sort them alphabetically.
b) What was the name of the oldest surviving male?
c) Make a new variable called ‘Status’, based on the ‘Survivied’ variable already in the dataset.
For passengers that did not survive, Status should be ‘dead’, for those who did, Status should be
‘alive’.
d) Plot the age distribution
e) break the above distribution based on survivial and plot this new distribution.
f) Plot the distribution of age based on survivial and sex features.
g) Using bar plot visualize the percentage of survivors against sex grouped by class.
4 Load Cereals dataset into python/R environment
a) Print first 10 observations from the dataset and inspect the data types of the features.
b) Add a new variable to the dataset called ‘totalcarb’, which is the sum of ‘carbo’ and ‘sugars’.
c) How many unique manufacturers are included in the dataset?
d) Rename the column ‘Manufacturer’ to ‘Producer’.
5 Read Hydro dataset into python/R environment and perform the following analysis.
a) Change the first variable to a Date class. Are the successive measurements in the dataset
always exactly one week apart?
b) How many weeks was dam level equal to or lower than the value of 235 Gwh?
c) Make a line plot of storage versus Date
d) Make the line thicker, and a dot-dashed style
e) Make the same plot with points and change the color of the points in the following way: green
if storage is over 500, orange if storage is between 235 and 500, and red if storage is below 235.
6 1)On Cereals Dataset perform
a) How many cereals in the dataframe are ‘hot’ cereals?
b) Take a subset of the dataframe with only the Manufacturer ‘K’.
c) Take a subset of the dataframe of all cereals that have less than, calories, AND have more
than 20 units of vitamins.
d) Take a subset of the dataframe containing cereals that contains at least 1 unit of sugar, and
keep only the variables ‘Cereal.name’, ‘calories’ and ‘vitamins’.
e) For one of the above subsets, Write a new CSV file to disk.
7 Use Titanic Dataset and find
a) how many observations of ‘Age’ are missing from the dataframe?
b) for what proportion of the passengers is the age unknown? Was this proportion higher for 3 rd
class than 1st and 2nd ?
c) count the number of passengers in each class(1st ,2nd, 3rd ).
8 Use coweeta dataset
a) Make a scatter plot of biomass versus height, with the symbol color varying by species.
b) Log – transform biomass, and redraw the plot
9 Import Titanic dataset into Python/R environment and perform descriptive analysis.
10 Working with R variables and basic data structures – Vector, Matrix, Dataframe.
a) Assume two vectors (2.1,3.4,2.5,2.7,2.9) and (0.3,0.5,0.6,0.9,1.1) are length and diameter of
cylinders. Calculate the correlation between lengths and diameters.
REG NO

b) assume the measurments are in centimeters. recalculate the volumes so that their units are in
cublc millimeters. calculate the mean, standard deviation, and coefficient of variation of these
new volumes.

Prepared By HoD
Mrs.Priya U Mrs.P.VIGNESWARI

SRI KRISHNA POLYTECHNIC COLLEGE - COIMBATORE 641 042.


CONTINUOUS ASSESSMENT TEST- III – March - 2025
Regulations R20203
REG NO

Branch / Sem.: Computer Engineering /IV Max. Marks:100


Subject: -Python Programming Sub Code: 1052234440
Date / Session: 02.03.2025/ AN Duration: 3 Hrs.
Note: 1) Answer the following questions in Part A(any 10) and B(any 7)

PART - A
1 List out the features of Python.
2. List out the basic datatype in Python.
3 Explain int() and print() function.
4 List out sequence data types.
5 Briefly explain concatenation with example
6 Briefly explain slicing a tuple.
7 What is an array? What are the types of array.
8 Explain the method shape() and reshape()
9 Define file. What are the types of files in Python?
10 What is the use of Pandas package?
11 Briefly explain break statement.
12 Briefly explain sum() and cumsum() function.
PART -B
1 a) Write a Python program to read three numbers and print the greatest of three numbers.b) write
a Python program to find the sum of N number using range() function in for loop.
2 a)Write a Python program to demonstrate the string slicing, concatenation method.b) Write a
Python program to demonstrate replication and len() method.
3 Write a Python program to create a tuple and convert into a list and print the list in sorted order
4 Write a Python program to create a dictionary and check whether a key or value exist in the
dictionary.
5 Write a Python program to create one dimensional array and convert into a 2D dimensional
array using reshape(), print the first two columns alone using slicing.
6 Write a python program to create two – dimensional array and search for an element using
where() function.
7 Write a Python program to create 2D dimensional array and demonstrate aggregation functions
sum(), min() and max() in the row and column wise.
8 Write a Python program to read a text file and write the content in another file.
9 Write a Python program to read a csv file using pandas and print the content
Prepared By HoD
Mrs.Priya U Mrs.P.VIGNESWARI
SRI KRISHNA POLYTECHNIC COLLEGE - COIMBATORE 641 042.
CONTINUOUS ASSESSMENT TEST- III – March - 2025
Regulations R20203
REG NO

Branch / Sem.: Computer Engineering /IV Max. Marks:100


Subject: E – Publishing Tools Sub Code: 1052234540
Date / Session: 01.03.2025/ AN Duration: 3 Hrs.
Note: 1) Answer the following questions in Part A(any 10) and B(any 7)

PART - A
1 List out the categories of E – publishing tools. Give one example for each category.
2 How will you save and close drawings in CorelDraw.
3 What are the types of styles?
4 What is Scribus? What is the use of it?
5 How will you open and close a Scribus document?
6 List out the shape tools available in Scribus.
7 Mention any six filters.
8 List out the important panels in Photoshop.
9 What are the templates available in Canva?
10 How will you add icon to your design in Canva?
11 List out the background available in Canva.
12 Briefly explain he drawing tools.
PART -B
1 Create a business card with a logo using various text styles , rectangle tool, and ellipse tool
2 Design a notebook wrapper using fountain filing and pattern filling tools.
3 Transform one object into another object using a blend tool.

4 Design an invitation for your college convocation using text tools Shape tools Image tables in
the page layout software.
5 Create a design by using various selection tools, cutting and pasting the images.
6 Create a passport size photo by removing the background of a photo and change it to blue color.
7 Change the image looks for by applying various filters and blending modes.
8 Create a design with the use of a layer mask using two images as background and foreground.

9 Design a multipage document like a tri- fold brochure using various elements for the college
workshop
10 Prepare a stylish calendar sheet by using tables and its formatting tools.
Prepared By HoD
Mrs.Priya U Mrs.P.VIGNESWARI

You might also like