You are on page 1of 47

Faculty of Engineering and Technology

School of Computer Science

COURSE FILE

Semester III
2022-23
COURSE NAME: Lab on C Programming
COURSE CODE: COS1082B

Prepared By Checked By Reviewed By Approved By


Subject Teacher Dr. Anuadha Kanade Dr. C. H. Patil/ Dr. Shubhalaxmi Joshi
Dr. Mahendra (for PG) Dr. Rajeshree Khande Associate Dean
Suryavanshi Dr Sachin Bhoite HoS/AHoS
(For UG)
INDEX
Sr. No Details

1 Academic Planner

2 Vision , Mission , PEO’s , PO’s

3 Individual Time Table

4 Syllabus

5 Session Plan (Submitted to ERP)

6 Assessment Methodology
Formative Assessment Test 1(Written Test)
7
Rubrics
Formative Assessment Test 2 (Surprise Test)
8
Rubrics
Mid Term Examination
9
Rubrics
End Term Examination
10
Rubrics
Course Material (PPT, Video (soft copy), Case Study, Class Notes,
11
Exercise, Assignment etc.)

12 Month-Wise Attendance

13 Defaulter List

14 Continuous Course Assessment (CCA)

15 CO – PO Mapping

16 Result Analysis

17 Faculty Feedback
Academic Planner
Vision and Mission of the Programme
Vision:
To contribute to the society through excellence in scientific and knowledge-based
education utilizing the potential of computer science with a deep passion for wisdom,
culture and values

Mission:
 To create knowledge, to disseminate knowledge, and to provide service to our
society
 Provide quality undergraduate and graduate education in both the theoretical and
applied foundations of computer science
 Train students to effectively apply this education to solve real-world problems thus
amplifying their potential for lifelong high-quality careers
 To give them a competitive advantage in the ever-changing and challenging global
work environment.
 To achieve a distinguished position in Computer Science through innovative
teaching learning methods and research
 To develop strong fundamentals and habit of life-long learning in students to fulfill
the needs of Industry.

Program Outcomes:

 A graduate with a B. Sc in Computer Science will have the ability to


communicate computer science concepts, designs, and solutions effectively
and professionally
 Apply knowledge of computing to produce effective designs and solutions for
specific problems
 Identify, analyze, and synthesize scholarly literature relating to the field of
computer science
 Use software development tools, software systems, and modern computing
platforms.
 Project work gives students hands on experience in solving a real world
problem.
 Design dynamic website in the form of web programming.
pursuing a career in Software Industry.

Programme Educational Objectives

 Demonstrate proficiency in the analysis of complex problems and the


synthesis of solutions to those problems
 Exhibit comprehension of modern software engineering principles
 Establish a breadth and depth of knowledge in the discipline of computer
science
 Prove the ability to work effectively as a team member and/or leader in an
ever-changing professional environment
 To focus on ‘data science and technology’ and ‘software technology ‘to
continue innovation in the future
 To prepare learners for higher positions in the IT industries
 To become successful professionals able to gain Employment and/or to be
accepted into a Computer Science for post graduate programmes.

Programme Specific Outcomes


 The ability to analyze, design and implement application specific electronic
system for complex engineering problems for analog, digital domain,
communications and signal processing applications by applying the
knowledge of basic sciences, engineering mathematics and engineering
fundamentals.
 The ability to adapt for rapid changes in tools and technology with an
understanding of societal and ecological issues relevant to professional
engineering practice through life-long learning.
 Excellent adaptability to function in multi-disciplinary work environment,
good interpersonal skills as a leader in a team in appreciation of professional
ethics and societal responsibilities.
Individual Time Table
Syllabus
Course Code COS1082B
Course Category Core Computer Science
Course Title Lab on Programming using C
Teaching Scheme and L T Laboratory Credits
Credits Weekly load hrs - - 4 2
Pre-requisites:
1. Basic knowledge of computer programming terminologies
2. Introduction to problem solving
3. Basic knowledge of different business systems

Course Objectives:
1. To develop Problem Solving abilities using computers.
2. To teach basic principles of programming.
3. To develop skills for writing simple programs using ‘C’.
Course Outcomes:
On completion of the course, student will be able to–
1. Students will get the knowledge of basic principles of programming.
2. Students will develop problem solving abilities using computers.
3. Students will write simple ‘C’ programs using decision making statements and loop
statements.
Course Contents:
Data types, Operators and Expressions
Data input and output functions
Decision making statements
Menu driven programs & Jump statements
Arrays and Strings
Functions
Learning Resources:
Reference Books:
1. 1. Programming in ANSI C-----By E. Balgurusaumy(Tata McGraw Hill)
2. Problem Solving with C—by Harrow Keith (Person Education, 3 Edition, 2011)
rd

3. The Complete reference to C- -by Herbert Schildt


4. Let us C----By YashwantKanetkar (BPB Publication)
Supplementary Reading: 1. The Complete reference to C, Herbert Schildt
Weblinks:
1. www.cprogramming.com/
2. www.w3schools.in/c-tutorial/
Pedagogy: Participative learning, discussions, algorithm, flowchart & program writing,
demonstrations, practical, assignment.
Assessment Scheme:

Mid Term Lab Lab Performance Lab Assignment /


Test (MCQ Online Lab Book Total
Test
/Direct Internal
Examination

30 Marks 20 Marks 10 Marks 60 Marks

Term End Examination: 40 Marks


Assessment Scheme:
Lab Continuous Assessment (LCA) 60 Marks
Assessment Scheme:
Syllabus:
Lab Continuous Assessment (LCA) 60 Marks
Module Workload in Hrs
Contents
No. Theory Lab Assess
 Write a C program to display “This is my first C Program”.
 Write a C program to add two numbers (2 and 6) and display
its sum.
 Write a C program to multiply two numbers (4 and 5) and
display its product.
1 6
TermEndWrite a C program
Examination: 40toMarks
calculate area and circumference of a
circle.
TermEndWrite
Examination: 40toMarks
a C program perform addition, subtraction, division
and multiplication of two numbers

 Write a program to take input of name, rollno and marks


obtained by a student in 4 subjects of 100 marks each and
display the name, rollno with percentage score secured.
 Calculation of Simple Interest,
2  Check whether the given number is even or odd - 6 -
 Convert string case
 Check for palindrome, prime number, perfect square

 Write a program to calculate simple and compound interest.


 Write a program to swap values of two variables with and
without using third variable. - -
 Write a program to display the size of every data type using
“sizeof” operator.
 Write a program to illustrate the use of unary prefix and
3 postfix increment and decrement operators. 6
 Write a program to input two numbers and display the
maximum number. 6. Write a program to find the largest of
three numbers using ternary operators.
 Write a program to find the roots of quadratic equation. 8.
Write a program to input name, marks of 5 subjects of a
student and display the name of the student, the total marks
scored, percentage scored and the class of result
 Write a Program to Check Whether a Number is Prime or 6
not.
 Write a program to find the largest and smallest among three
entered numbers and also display whether the identified
4 - -
largest/smallest number is even or odd.
 Write a program to compute grade of students using if else
 Write a program to check whether the entered year is leap 6
year or not (a year is leap if it is divisible by 4 and divisible
by 100 or 400.)
 Write a program to find the factorial of a number.
5  Write a program to check number is Armstrong or not. - -
(Hint: A number is Armstrong if the sum of cubes of
individual digits of a number is equal to the number itself).
 Write a program to count number of digits in a given 6
integer.
 Write a program to reverse a given integer.
 Write a program to print number in reverse order with a
difference of 2.
 Write a program to print the sum of digits of a number using
for loop.
6  Write a program to check whether a number is Palindrome - -
or not.
 Write a program to generate Fibonacci series.
 If a four-digit number is input through the keyboard, write a
program to obtain the sum of the first and last digit of this
number.
 Write a program to find GCD (greatest common divisor or
HCF) and LCM (least common multiple) of two numbers.
 Write a program to display the following pattern.
*
** - -
***
****
*****
 Write programs to display following patterns.
1
22
333
4444
55555

 Write programs to display following patterns.


*
**
7 ***
****
*****
******
 Write programs to display following patterns.
1 6
121
12321
1234321
123454321

 Write programs to display following patterns.


1
123
12345
123
1

 Write programs to display following patterns.


*******
*** ***
** **
* *
 Write a program to insert 5 elements into an array and print 6
the elements of the array
 Write a Program to Search an element in array.
 Write a Program to perform addition of all elements in
Array.
 Write a Program to find the largest and smallest element in
Array.
8  Write a Program to reverse the array elements in C - -
Programming. Write a Program for deletion of an
element from the specified location from Array.
 Write a Program to access an element in 2-D Array.
 Write a program for addition of two matrices of any order in
C.
 Write a Program to multiply two 3 X 3 Matrices.
 Write a program to read a string and check for palindrome
without using string related function (a string is palindrome
if its half is mirror by itself eg: abcdcba).
 Write a program to accept a string and count the number of
vowels present in this string

 Write a C program to create, declare and initialize structure. 6


 Write a program to declare, initialize an UNION.
 Write a program to create a structure named company which
has name, address, phone and noOfEmployee as member
variables. Read name of company, its address, phone and
noOfEmployee. Finally display these members‟ value.
 Define a structure “complex” (typedef) to read two complex
numbers and perform addition, subtraction of these two
9 complex numbers and display the result. - -
 Write a program to read RollNo, Name, Address, Age &
average-marks of 12 students in the BCT class and display
the details from function.
 Write a program to add two distances in feet and
inches using structure
 Write a program to read and print an Employee‟s Details
using Structure

 C Program to list all files and sub-directories in a directory 6


 C Program to count number of lines in a file
 C Program to print contents of file
 C Program to copy contents of one file to another file
 C Program to merge contents of two files into a third file
 C program to delete a file
10 - -
 Write a program to create a file called emp.rec and store
information about a person, in terms of his name, age and
salary.
 Write a program to illustrate how a file stored on the disk is
read.

Prepared By Checked By Verified By Approved By

Dr. Rajeshree Khande Dr. Rajeshree Khande Dr. C. H. Patil Dr. Shubhalaxmi Joshi
Assistant Professor AHoS & Program Head HoS Associate Dean & BoS
School of Computer Science School of Computer School of Computer Chairperson
Science Science Faculty of Science
Dr Vishwanath Karad MIT World Peace University
Faculty of Engineering and Technology
Lab Continuous Assessment (LCA)
Academic Year 2022-23
FYBSc (Computer Science)
Semester I
Sr No Continuous Evaluation Criteria Name Marks
1) Lab Performance 20 Marks
2) Lab Assignment / Lab Book 10 Marks
3) Mid Term Lab Test (MCQ Online Test 30 Marks
/Direct Internal Examination
Total 60 Marks
Dr Vishwanath Karad MIT World Peace University
Faculty of Engineering and Technology
School of Computer Science
Formative Assessment Test 1 (Surprise Test)
FYBSc (Computer Science) Sem-I Div-A and Div-B
COS1077B C Programming

FYBSc (Computer Science) 2022-23 Sem-I C Programming MCQ Test


1. MCQ Test is of 15 Marks.
2.Test carries 15 MCQ questions.
3. Each question carries 1 mark.
4. Duration of the MCQ Test is 15 Minutes.

Date: 02/12/2022

1) Which of the following is not the property of algorithm


A) Output
B) Finiteness
C) Correctness
D) Effectiveness
Ans: C) Correctness

2) To input the data from user, which of the following symbol is used in flowchart
A) Rectangle
B) Diamond
C) Parallelogram
D) Oval
Ans: C) Parallelogram

3) Which of the following is valid variable name


A) basic-hra
B) 2015_Year
C) topper’s
D) _basic
Ans: _basic

4) C programs are converted into machine language with the help of


A) An Editor
B) A compiler
C) An operating system
D) A Processor
Ans: B) A Compiler

5)  The expression 6 / 3 + 2 * 4 % 2 evaluates to the value


A) 2
B) 0
C) 1
D) 6
Ans: A) 2
6) What would be the output of following program?

#include<stdio.h>
void main( )
{
int i = 4, z = 12 ;
if ( i== 4 || z > 50 )
printf ( "Hi\t" ) ;
else
printf ( "Hello\t" ) ;
}
A) Hi
B) Hello
C) Hi Hello
D) Hello Hi
Ans: A) Hi

7) Which of the following statement is True


A) while loop first execute the statements and then check the condition
B) do while loop first check the condition and then execute the statements
C) do while loop first execute the statements and then check the condition
D) loops cannot be specified in nested form
Ans: C) do while loop first execute the statements and then check the condition

8) The break statement is used to exit from


A) an if statement
B) a for loop
C) a program
D) the main( ) function
Ans: B) a for loop

9) which of the following declaration is valid?


A) int Num={10, 20, 30};
B) int Num[][2]={10, 20, 30, 40};
C) int Num[][]={10, 20, 30, 40};
D) int Num[2][]={10, 20, 30, 40};
Ans: B) int Num[][2]={10, 20, 30, 40};

10) The strcmp() function returns value _______ when both the strings that are to be
compared are same
A) 1
B) -1
C) 0
D) Any positive value
Ans: C) 0

11) Which of the following statement represents the function declaration


A) int a = Compute(Num, n);
B) int Digital(int x, int y);
C) float Access(int p, int q) { }
D) Display(a, b, c);
Ans: B) int Digital(int x, int y);
12) Before using the pointer variable
A) It should be initialized
B) It should be declared
C) It should not be declared and initialized
D) It should be declared and initialized
Ans: D) It should be declared and initialized

13) Which of the following statement is False


A) We can add pointer with constant value
B) We can compare 2 pointer variables together
C) We can subtract constant value from pointer variable
D) We can add 2 pointer variables together
Ans: D) We can add 2 pointer variables together

14) Which of the following is correct


A) int *ptr; ptr=(int)malloc(10, 4);
B) int *ptr; ptr=(int*)calloc(20);
C) int *ptr; ptr=(int*)malloc(80);
D) int *ptr; ptr=(int)calloc(20, 4);
Ans: C) int *ptr; ptr=(int*)malloc(80);

15) If value and memory address of a is 75 and 3044 respectively. If value and
memory address of b is 7054 and 9080 respectively. If value and memory
address of c is 3044 and 7054 respectively. Then what value **b will represent.
A) 3044
B) 9080
C) 7054
D) 75
Ans: D) 75
Dr Vishwanath Karad MIT World Peace University
Faculty of Engineering and Technology
School of Computer Science
Formative Assessment Test 2 (Written Test 1)
FYBSc (Computer Science) Sem-I Div-A and Div-B
COS1077B C Programming
Date of Conduction: 22/10/2022
Total Marks: 15

Instructions:

1. Solve below questions and upload single PDF file containing all answers
2. Follow the deadline for submitting assignment

Questions:
Q.1) What is mean by Algorithm, explain the properties of algorithm
Q.2) List and explain the meaning of various arithmetic, logical and relational operators
Q.3) Write a C language program to display following pattern
 * * * * *
 * * * *
***
* *   
*
Dr Vishwanath Karad MIT World Peace University
Faculty of Engineering and Technology
School of Computer Science
Formative Assessment Test 2 (Written Test 2)
FYBSc (Computer Science) Sem-I Div-A and Div-B
COS1077B C Programming
Date of Conduction: 22/10/2022
Total Marks: 15

Instructions:

1. Solve below questions and upload single PDF file containing all answers
2. Follow the deadline for submitting assignment

Questions:
Q.1) What is mean by flowchart, explain various symbols used in constructing flowchart
Q.2) Explain the different loop control structures (while loop, for loop and do while loop)
Q.3) Write a C language program to display following pattern
54321
 4 3 2 1
 321
   2 1
    1
Dr Vishwanath Karad MIT World Peace University
Faculty of Engineering and Technology
School of Computer Science
Mid Term Examination
FYBSc (Computer Science) Sem-I Div-A and Div-B
COS1077B C Programming

1) Which of the following is not the property of algorithm


A) Output
B) Finiteness
C) Correctness
D) Effectiveness
Ans: C) Correctness

2) Algorithm is
A) Set of steps for solving a particular problem
B) One of the forms of control structures
C) One of the types of loop
D) An array
Ans: A) Set of steps for solving a particular problem

3) To input the data from user, which of the following symbol is used in flowchart
A) Rectangle
B) Diamond
C) Parallelogram
D) Oval
Ans: C) Parallelogram

4) Which of the following symbol is used to indicate beginning of the flowchart


A) Rectangle
B) Diamond
C) Parallelogram
D) Oval
Ans: D) Oval

5) Which of the following symbol is used to specify condition within a flowchart


A) Rectangle
B) Diamond
C) Parallelogram
D) Oval
Ans: B) Diamond

6) Symbol _______ is used to represent operation in flowchart


A) Rectangle
B) Diamond
C) Parallelogram
D) Oval
Ans: A) Rectangle

7) Which of the following is valid variable name


A) basic-hra
B) 2015_Year
C) topper’s
D) _basic
Ans: D) _basic

8) C language has been developed by


A) Ken Thompson
B) Dennis Ritchie
C) Bjarne Stroustrup
D) Yashwant Kanetkar
Ans: B) Dennis Ritchie

9) C programs are converted into machine language with the help of


A) An Editor
B) A compiler
C) An operating system
D) Processor
Ans: B) A compiler

10) A character variable can at a time store


A) 1 character
B) 8 characters
C) 254 characters
D) Infinite number of characters
Ans: A) 1 character

11) A C variable cannot start with


A) Capital letter
B) Small letter
C) Digit
D) Underscore
Ans: C) Digit

12) Which of the following statement is correct


A) a + b = 15;
B) 15 = a + b;
C) 3 + a = b;
D) a = 3 + b;
Ans: D) a = 3 + b;

13) Which of the following shows the correct hierarchy of arithmetic operators in
C
A) *, +, =
B) +, *, =
C) *, =, +
D) +, =, *

Ans: A) *, +, =
14) In x = 6 / 3 + 2 * 4 % 2; which operation will be performed first?
A) 3 + 2
B) 6 / 3
C) 2 * 4
D) 4 % 2
Ans: B) 6 / 3

15) An expression x = 3 / 2 * 4 + 3 / 8 + 3; evaluates to the value


A) 3
B) 0
C) 7
D) 4
Ans: C) 7

16) _____ format specifier is used for signed int variable


A) %u
B) %l
C) %f
D) %d
Ans: D) %d

17) Which of the following printf() statement is correct


A) printf(“%c, x”);
B) printf(x, “%c”);
C) printf(“%c”, x);
D) printf(“%c,” x);
Ans: C) printf(“%c”, x);

18) What would be the output of the following program:


#include<stdio.h>
void main( )
{
int a = 800, b=600, c=700 ;
if ( a >= 400)
b = 500 ;
c = 200 ;
printf ( "%d\t%d", b, c ) ;
}
A) 600 700
B) 600 200
C) 500 700
D) 500 200
Ans: D) 500 200

19) What would be the output of the following program:


#include<stdio.h>
void main( )
{
int x = 3, y = 5 ;
if ( x == 3 )
printf ( "\n%d", x ) ;
else
printf ( "\n%d", y ) ;
}
A) 3
B) 5
C) 3 5
D) 5 3
Ans: A) 3

20) Which of the following operator have highest priority?


A) &&
B) %
C) !
D) <=
Ans: C) !

21) What would be the output of following program?


#include<stdio.h>
void main( )
{
int i = 4, z = 12 ;
if ( i== 4 || z > 50 )
printf ( "Hi\t" ) ;
else
printf ( "Hello\t" ) ;
}
A) Hi
B) Hello
C) Hi Hello
D) Hello Hi
Ans: A) Hi

22) What would be the output of following program?


#include<stdio.h>
void main( )
{
int i = 4, z = 12 ;
if ( i== 4 && z > 50 )
printf ( "Hi\t" ) ;
else
printf ( "Hello\t" ) ;
}
A) Hi
B) Hello
C) Hi Hello
D) Hello Hi

Ans: B) Hello

23) Which of the following statement is True


A) while loop first execute the statements and then check the condition
B) do while loop first check the condition and then execute the statements
C) do while loop first execute the statements and then check the condition
D) loops cannot be specified in nested form
Ans: C) do while loop first execute the statements and then check the condition

24) The break statement is used to exit from


A) an if statement
B) a for loop
C) a program
D) the main( ) function
Ans: B) a for loop

25) ______ statement is used to take program control to the beginning of the loop
A) continue
B) exit
C) switch
D) return
Ans: A) continue

26) What would be the following program print?


#include<stdio.h>
void main( )
{
int i = 10 ;
while ( i = 20 )
printf ( "%d", i ) ;
}
A) 20
B) 10
C) 20 will be printed infinitely
D) 10 will be printed infinitely
Ans: C) 20 will print infinitely

27) A do-while loop is useful when we want that the statements within the loop
must be executed
A) Only once
B) At least once
C) More than once
D) Two times
Ans: B) At least once

28) Which of the following is not an infinite loop?


A)
int i=1;
while(1)
{
i++;
}

B)
for(;;)
;
C)
int True=0, False;
while(True)
{
False = 1;
}

D)
int y=0, x=0;
do
{
y=x;
}while(x==0);

Ans:
C)
int True=0, False;
while(True)
{
False = 1;
}

29) Which of the following statement about array is false?


A) Array is a collection of similar type of elements
B) Declaration of array should contain datatype and dimension (size)
C) Elements of array are stored into continuous memory locations
D) First element of an array is stored at 1st position of an array

Ans: D) First element of an array is stored at 1st position of an array

30) Which of the following statement is valid?


A) int Num[];
B) int[] Num;
C) int Num={10, 20, 30, 40};
D) int Num[]={10, 20, 30, 40};

Ans: D) int Num[]={10, 20, 30, 40};

Q.1) Write an Algorithm and construct a flowchart to find factorial of a input


number.

Q.2) Explain in detail the concept of constants and variables in C language.

Q.3) Write a C language program to display all prime numbers between 1 to 100.

Q.4) Write a C language program to check whether the input number is


palindrome or not.

Q.5) What is an array, explain the syntax of array declaration, how to initialize the
array and explain properties of an array.
Course Material ( Notes and PPTs)
Course material is shared with students through Google Classroom
Students Attendance
FYBSc (Computer Science) Div-A

Teaching Subject Wise Monthly Attendance    2022-2023  (First)C Programming(FY B.Sc (CS)(S)-B)


(TH)(FY B.Sc Panel 1)  [01/08/2022-07/12/2022]  Below 75%     continues Below 75%
Att Total
Aug Sep- Oct Nov- Nov- Dec
Student Student Tota Perio
-22 22 -22 22 22 -22
Code Name l d Att %
113222005 Joshi Ishita  13/1  82.6
 8/8  8/10  4/8  1/1  4/6  38  46
4 Pranav 3 1
Kapadia
113222006  10/1  13/1
Khushi  8/8  8/8  1/1  6/6  46  46  100
3 0 3
Shirish
113222008 Deshmukh  10/1  13/1  95.6
 8/8  8/8  1/1  4/6  44  46
2 Gautam S. 0 3 5
113222009  12/1
Jain Jigyasa -  8/8  9/10  6/8  1/1  6/6  42  46  91.3
5 3
Gosavi
113222010  11/1  78.2
Pramod  8/8  8/10  4/8  1/1  4/6  36  46
0 3 6
Santosh
Anant
113222019  10/1  13/1
Rabboni  8/8  8/8  1/1  6/6  46  46  100
6 0 3
Rajiv
Adsare
113222021  10/1  13/1
Vedant  8/8  4/8  1/1  6/6  42  46  91.3
7 0 3
Nanasaheb
Swain
113222026  10/1  13/1  93.4
Shubhankar  8/8  5/8  1/1  6/6  43  46
0 0 3 8
R.
113222026 Deshmukh  13/1  73.9
 7/8  5/10  4/8  1/1  4/6  34  46
1 Ashlesha A. 3 1

113222029 Daspute  67.3


 8/8  6/10  2/8  8/13  1/1  6/6  31  46
5 Isha Nilesh 9
Wagh
113222031  12/1  86.9
Digvijay  8/8  9/10  4/8  1/1  6/6  40  46
9 3 6
Shantaram
113222032 Nalawade  13/1  78.2
 8/8  6/10  4/8  1/1  4/6  36  46
1 Pranjali V. 3 6
Bidkar
113222034  10/1  13/1  97.8
Atharva  8/8  7/8  1/1  6/6  45  46
1 0 3 3
Mahesh
Kinikar
113222036  13/1
Arnav  8/8  6/10  8/8  1/1  6/6  42  46  91.3
3 3
Nagesh
113222036 Zende Onkar  13/1  93.4
 8/8  8/10  7/8  1/1  6/6  43  46
6 Rajaram 3 8
113222037 Samudre  67.3
 8/8  7/10  0/8  1/1  9/13  6/6  31  46
1 Shrinivas S 9
113222037 Malji Shruti  13/1  69.5
 8/8  4/10  2/8  1/1  4/6  32  46
5 Deepak 3 7

113222037 Ghatge  10/1  10/1  86.9


 8/8  5/8  1/1  6/6  40  46
7 Sanskruti 0 3 6

Doshi
113222038  12/1  93.4
Namra  8/8  9/10  7/8  1/1  6/6  43  46
0 3 8
Kumar
113222039 Pernekar  10/1  82.6
 8/8  8/10  5/8  1/1  6/6  38  46
1 Gauri Ashok 3 1
Naykodi
113222039  47.8
Neha  7/8  2/10  3/8  1/1  5/13  4/6  22  46
9 3
Navnath
Dongare
113222040  10/1  13/1
Atharva  8/8  8/8  1/1  6/6  46  46  100
5 0 3
Pradip
113222040 Joshi Tanaya  11/1  82.6
 8/8  6/10  6/8  1/1  6/6  38  46
6 Milind 3 1
113222041 Mahindraka  11/1  80.4
 8/8  8/10  3/8  1/1  6/6  37  46
2 r Tejaswini 3 3
Kolhatkar
113222041  10/1  11/1
Akash  8/8  6/8  1/1  6/6  42  46  91.3
8 0 3
Umesh
113222042 Patil Atharva  10/1  13/1  97.8
 8/8  7/8  1/1  6/6  45  46
7 Vishnu 0 3 3
Rajawat
113222043  10/1  11/1  95.4
Surendra  8/8  8/8  1/1  4/4  42  44
5 0 3 5
Singh
113222044 Thakur  10/1  10/1  86.9
 8/8  5/8  1/1  6/6  40  46
0 Rohin Ranjit 0 3 6
Shahane
113222044  10/1  89.1
Aditya  8/8  8/8  1/1  8/13  6/6  41  46
3 0 3
Abhijeet
Chavan
113222045  11/1
Pradnesh  8/8  8/10  8/8  1/1  6/6  42  46  91.3
5 3
Nagesh
Admane
113222054  10/1  11/1
Swapnil  8/8  6/8  1/1  6/6  42  46  91.3
1 0 3
Sunil
Dange
113222056  10/1  12/1  97.8
Pavan  8/8  8/8  1/1  6/6  45  46
1 0 3 3
Pandurang
Shinde
113222060  84.7
Samruddhi  8/8  8/10  7/8  1/1  9/13  6/6  39  46
6 8
Anand
113222060 Kokre Amey  13/1  89.1
 8/8  8/10  5/8  1/1  6/6  41  46
7 Anand 3 3
Gorde
113222061  10/1  13/1  93.4
Pratiksha  7/8  8/8  1/1  4/6  43  46
0 0 3 8
Sudam
113222062 Kadam  13/1  88.6
 8/8  5/10  8/8  1/1  4/4  39  44
2 Vineet Vilas 3 4
Dhopare
113222065  60.8
Sajet  7/8  3/10  2/8  9/13  1/1  6/6  28  46
8 7
Venunad
Kadam
113222068  12/1  84.7
Sayali  8/8  8/10  4/8  1/1  6/6  39  46
7 3 8
Dattatray
Bhujbal
113222070  11/1  90.9
Abhishek  7/8  9/10  8/8  1/1  4/4  40  44
5 3 1
Ashok
113222074 Natrajan  10/1  76.0
 8/8  8/10  2/8  1/1  6/6  35  46
0 Aryaman - 3 9
113222074 Rekhade  10/1  10/1  93.4
 8/8  8/8  1/1  6/6  43  46
5 Prateek P. 0 3 8
Kulkarni
113222076  13/1  86.0
Maitreyee  4/5  6/10  7/8  1/1  6/6  37  43
2 3 5
A.
Lohar
113222076  10/1
Pradnya  5/5  7/10  6/8  1/1  6/6  35  43  81.4
6 3
Sachin
113222078 Chandilkar  11/1  74.4
 5/5  6/10  5/8  1/1  4/6  32  43
5 Amrapali D 3 2
113222078 Popat Arpit  12/1
 4/5  8/10  4/8  1/1  6/6  35  43  81.4
6 Bhavesh 3
Solanki
113222078  10/1  72.0
Hassam  5/5  6/8  7/13  1/1  2/6  31  43
9 0 9
Ahmed
113222080 Mishra Tanu  10/1  13/1
 4/4  8/8  1/1  6/6  42  42  100
4 Rajkumar 0 3
113222080 Aarya  12/1
 4/4  8/10  6/8  1/1  6/6  37  42  88.1
7 Jadhav Nitin 3

113222080 Jare Nikhil  13/1  80.9


 4/4  6/10  6/8  1/1  4/6  34  42
9 Devrao 3 5

113222086 Arda Rahul  10/1  13/1  90.4


 4/4  6/8  1/1  4/6  38  42
3 Rajendra 0 3 8
113222087 Kadam  10/1  76.1
 3/4  5/10  7/8  1/1  6/6  32  42
1 Sanika Vijay 3 9
113222087 Gosavi  52.3
 3/4  5/10  3/8  1/1  6/13  4/6  22  42
2 Vaishnavi N. 8
113222087 Ghanmode  13/1  97.6
 4/4  9/10  8/8  1/1  6/6  41  42
3 Shrenic Y. 3 2
113222089  10/1  73.1
Jain Agrima -  3/3  8/10  4/8  1/1  4/6  30  41
0 3 7
Mazire
113222090  10/1  13/1  97.5
Disha  2/3  8/8  1/1  6/6  40  41
9 0 3 6
Dinesh
113222091 Roy Aman  10/1  70.7
 2/3  8/10  4/8  1/1  4/6  29  41
7 Lalit 3 3
113222097 Bhandare  13/1  80.4
 2/3  3/10  8/8  1/1  6/6  33  41
2 Abhijit S. 3 9
113222103 Dhawale  13/1  94.7
 0/0  8/10  8/8  1/1  6/6  36  38
9 Yash S. 3 4
113222105 Kudale Sahil  13/1  97.2
 0/0  7/8  8/8  1/1  6/6  35  36
8 Sunil 3 2

113222113 Sail Arnav  12/1  77.4


 0/0  2/3  3/8  1/1  6/6  24  31
1 Dwidish 3 2
Bhavsar
113222113  13/1  96.7
Gaurang  0/0  3/3  7/8  1/1  6/6  30  31
6 3 7
Kiran
Shrotri
113222114  77.4
Atharva  0/0  3/3  6/8  1/1  8/13  6/6  24  31
6 2
Vikrant
Kinge
113222114  13/1  90.3
Darshan  0/0  0/3  8/8  1/1  6/6  28  31
9 3 2
Pramod
113222116 Thakur  13/1
 0/0  3/3  8/8  1/1  4/4  29  29  100
2 Anish Nitin 3
113222118  13/1  92.8
. Keshav -  0/0  0/0  6/8  1/1  6/6  26  28
6 3 6
113222119 Agarkar  13/1
 0/0  0/0  8/8  1/1  6/6  28  28  100
0 Chaitanya R. 3
Students Attendance
FYBSc (Computer Science) Div-B

Teaching Subject Wise Monthly Attendance    2022-2023  (First)C Programming(FY B.Sc (CS)(S)-B)(TH)


(FY B.Sc Panel 2)  [01/08/2022-07/12/2022]  Below 75%     continues Below 75%
Total
Student Aug- Sep- Oct- Nov- Dec- Att
Student Name Perio Att %
Code 22 22 22 22 22 Total
d
Bedadur Soham
1132220306  9/9  9/13  3/8  8/13  3/3  32  46  69.57
Anand
1132220361 Doifode Ranveer D.  9/9  13/13  5/8  12/13  3/3  42  46  91.3
1132220428 Patil Atharva Ajay  6/9  3/13  0/8  4/13  2/3  15  46  32.61
More Atharv
1132220801  7/7  7/13  6/8  9/13  2/3  31  44  70.45
Prakash
1132220803 Hagawane Aditya V.  7/7  13/13  5/8  13/13  3/3  41  44  93.18
Mahajan Ramya
1132220808  5/5  13/13  6/8  13/13  3/3  40  42  95.24
Kamlesh
Shilimkar Shravani
1132220822  5/5  9/13  6/8  12/13  2/3  34  42  80.95
K.
Mishra
1132220824  5/5  12/13  6/8  13/13  3/3  39  42  92.86
Ratneshkumar S.
Borgaonkar Pranav
1132220846  5/5  11/13  8/8  13/13  3/3  40  42  95.24
P.
1132220851 Vispute Aary Pranay  4/5  9/13  3/8  11/13  3/3  30  42  71.43
1132220854 Zore Atharva Vijay  5/5  13/13  5/8  13/13  3/3  39  42  92.86
1132220862 Suryawanshi Esha B.  5/5  9/13  6/8  13/13  3/3  36  42  85.71
Thakare Sakshant
1132220864  5/5  13/13  6/8  13/13  3/3  40  42  95.24
Dilip
1132220874 Vaze Neeraj Harshal  4/4  13/13  8/8  13/13  3/3  41  41  100
1132220875 Madurkar Chinmay -  4/4  13/13  6/8  13/13  3/3  39  41  95.12
Pande Subodh
1132220876  1/4  10/13  4/8  12/13  3/3  30  41  73.17
Milind
1132220880 Parida Aslesha B.  1/4  13/13  6/8  13/13  2/3  35  41  85.37
1132220882 Sathiyajith Vijayan  4/4  11/13  5/8  12/13  3/3  35  41  85.37
1132220888 Kumar Ayush -  3/4  13/13  6/8  10/13  3/3  35  41  85.37
1132220892 Gadia Aditya Atul  4/4  13/13  5/7  11/13  3/3  36  40  90
Rehman Shaikh
1132220907  3/4  8/13  2/8  6/13  0/3  19  41  46.34
Matur
1132220908 Gadate Neha Ram  4/4  8/13  3/8  8/13  2/3  25  41  60.98
1132220915 Mhaske Tushari D.  1/4  5/13  4/8  9/13  3/3  22  41  53.66
1132220926 Okkasa Md -  0/3  13/13  5/8  10/13  3/3  31  40  77.5
1132220941 Shende Om Rajesh  3/3  10/13  5/8  11/13  2/3  31  40  77.5
1132220947 More Pankaj Pundlik  0/3  8/13  0/8  5/13  1/3  14  40  35
1132220977 Mali Karan -  2/3  13/13  4/8  13/13  3/3  35  40  87.5
1132220979 Gadekar Sarthak K.  3/3  10/13  6/8  13/13  3/3  35  40  87.5
Bhosale Pratik
1132220981  0/3  10/13  5/8  12/13  3/3  30  40  75
Kishor
1132220983 Wagh Asmi Bhimrao  3/3  13/13  8/8  13/13  2/3  39  40  97.5
1132220984 Mapari Tanuja Anil  1/3  12/13  3/8  8/13  3/3  27  40  67.5
Pawar Vaishnavi
1132221007  0/2  11/13  4/8  10/13  3/3  28  39  71.79
Baban
Deshpande Aakriti
1132221018  0/0  3/13  3/7  9/13  2/3  17  36  47.22
Amol
Thite Prathamesh
1132221020  0/0  13/13  6/8  11/13  2/3  32  37  86.49
M.
Deshpande Bhargav
1132221042  0/0  12/13  3/8  12/13  2/3  29  37  78.38
D.
1132221052 Thorat Om Rajendra  0/0  11/13  6/8  13/13  3/3  33  37  89.19
Zanjad Vaishnavi
1132221060  0/0  10/13  5/8  13/13  2/3  30  37  81.08
Raju
1132221061 Tamboli Alam Ajim  0/0  9/11  6/8  11/13  3/3  29  35  82.86
1132221063 Jadhav Akash C.  0/0  7/11  4/8  12/13  3/3  26  35  74.29
Mehta Pratham
1132221064  0/0  9/11  8/8  11/13  2/3  30  35  85.71
Vinod
Shelke Vaibhav
1132221065  0/0  10/11  6/8  11/13  3/3  30  35  85.71
Vitthal
Waghmare
1132221066  0/0  9/11  6/8  11/13  3/3  29  35  82.86
Vaishnavi S.
Gaikwad Rajeshree
1132221079  0/0  9/9  5/7  12/13  2/3  28  32  87.5
N.
1132221082 Soni Harshita -  0/0  7/8  5/8  13/13  2/3  27  32  84.38
Wakode Om
1132221088  0/0  8/8  4/8  13/13  3/3  28  32  87.5
Gurunath
Kotkar Vishal
1132221089  0/0  3/7  5/8  12/13  3/3  23  31  74.19
Swapnil
1132221090 Tarate Gauri Sanjay  0/0  7/7  4/8  8/13  3/3  22  31  70.97
1132221091 Tarate Anurag Kisan  0/0  7/7  6/8  12/13  2/3  27  31  87.1
Borade Yash
1132221092  0/0  3/5  5/8  7/13  2/3  17  29  58.62
Rajendra
1132221096 Shirke Sujal Sudhir  0/0  4/5  6/8  12/13  3/3  25  29  86.21
1132221097 Patel Nayan Suresh  0/0  2/5  5/8  6/13  3/3  16  29  55.17
1132221099 Soni Manak A.  0/0  4/4  5/8  12/13  2/3  23  28  82.14
Kokate Pranav
1132221104  0/0  4/4  5/8  12/13  3/3  24  28  85.71
Sachin
Bhayekar Harshada
1132221120  0/0  3/3  6/8  13/13  2/3  24  27  88.89
N.
1132221135 Korhale Atharv  0/0  3/3  3/8  8/13  3/3  17  27  62.96
Ganesh
Roy Sameer
1132221138  0/0  0/3  3/8  10/13  1/3  14  27  51.85
Nandukumar
Suryawanshi
1132221141  0/0  3/3  8/8  11/13  3/3  25  27  92.59
Hrishikesh -
Mankar Sakshi
1132221143  0/0  1/3  6/8  12/13  2/3  21  27  77.78
Rajendra
Buttepatil
1132221151  0/0  0/3  6/8  11/13  2/3  19  27  70.37
Maheshwari A.
1132221157 Ekbote Sonali Satish  0/0  0/3  2/8  11/13  2/3  15  27  55.56
Choudhary Dhanraj
1132221175  0/0  0/2  6/8  12/13  3/3  21  26  80.77
G.
Nikam Prasad
1132221181  0/0  0/0  6/8  13/13  3/3  22  24  91.67
Ramrao
Kale Atharv
1132221187  0/0  0/0  3/8  9/13  2/3  14  24  58.33
Hanumant
1132221193 Panhalkar Hrushil H.  0/0  0/0  0/8  10/13  2/3  12  24  50
Defaulter List
Sr No PRN Name of Student
1 1132220428 Patil Atharva Ajay
2 1132220947 More Pankaj Pundlik
3 1132220907 Rehman Shaikh Matur
4 1132221018 Deshpande Aakriti Amol
5 1132220399 Naykodi Neha Navnath
6 1132221193 Panhalkar Hrushil H.
7 1132221138 Roy Sameer Nandukumar
8 1132220872 Gosavi Vaishnavi N.
9 1132220915 Mhaske Tushari D.
10 1132221097 Patel Nayan Suresh
11 1132221157 Ekbote Sonali Satish
12 1132221187 Kale Atharv Hanumant
13 1132221092 Borade Yash Rajendra
14 1132220658 Dhopare Sajet Venunad
15 1132220908 Gadate Neha Ram
16 1132221135 Korhale Atharv Ganesh
17 1132220984 Mapari Tanuja Anil
18 1132220375 Malji Shruti Deepak
FYBSc (Computer Science) Div-A CCA
Dr. Vishwanath Karad MIT World Peace University
Faculty of Science
Pune- 411038, District- PUNE (MAHARASHTRA)

Phone:- 020 79401700 Fax No.:- 020 25442770


Email:- admissions@mitwpu.edu.in

Website :- www.mitwpu.edu.in

Faculty of Science
(C Programming - TH (SEMESTER-I)) Subject Wise(Actual Mark-ALL Entity) Report for (FY
B.Sc (CS)(SEM)-A) Section : 2022-2023

Sr.No. NAME OF END TERM MIDTER SURPRIS WRITTEN TEST Total


STUDENT EXAMINATI M E TEST
ON
1 Shrotri 31 14 9 13 67
Atharva
Vikrant
2 Bidkar 31 23 13 13 80
Atharva
Mahesh
3 Ghatge 25 24 12 15 76
Sanskruti
Sanyam
4 Deshmukh 27 19 9 15 70
Gautam
Sumeet
5 Roy Aman 19 24 0 15 58
Lalit
6 Ghanmode 34 21 7 14 76
Shrenic
Yashwant
7 Dhopare 0 19 9 0 28
Sajet
Venunad
8 Thakur 31 28 11 15 85
Rohin
Ranjit
9 Dhawale 19 9 13 70
Yash 29
Suryakant
10 Kadam 16 21 11 15 63
Vineet
Vilas
11 Thakur 24 27 13 15 79
Anish Nitin
12 Agarkar 33 26 14 15 88
Chaitanya
Ramesh
13 Chandilkar 14 16 5 13 48
Amrapali
Dashrath
14 Jain Jigyasa 24 27 11 15 77
-
15 Shinde 23 26 11 13 73
Samruddhi
Anand
16 Gorde 26 23 4 15 68
Pratiksha
Sudam
17 Gosavi 0 17 0 13 30
Vaishnavi
Narendra
18 Mazire 20 24 14 15 73
Disha
Dinesh
19 Doshi 32 13 9 13 67
Namra
Kumar
20 Popat 31 22 11 13 77
Arpit
Bhavesh
21 Sail Arnav 25 25 12 0 62
Dwidish
22 Bhandare 9 16 12 13 50
Abhijit
Shankar
23 Pernekar 23 19 13 15 70
Gauri
Ashok
24 Dange 10 19 10 15 54
Pavan
Pandurang
25 Kulkarni 27 23 13 15 78
Maitreyee
Abhijit
26 Rajawat 32 25 11 15 83
Surendra
Singh
27 Joshi 30 26 10 13 79
Tanaya
Milind
28 Daspute 32 26 12 15 85
Isha Nilesh
29 Kinge 29 19 10 13 71
Darshan
Pramod
30 Bhavsar 28 20 12 15 75
Gaurang
Kiran
31 Kokre 16 20 12 13 61
Amey
Anand
32 Patil 25 21 11 15 72
Atharva
Vishnu
33 Aarya 21 24 11 15 71
Jadhav
Nitin
34 Arda Rahul 26 10 14 13 63
Rajendra
35 Deshmukh 34 29 12 13 88
Ashlesha
Abhijit
36 Shahane 27 24 10 13 74
Aditya
Abhijeet
37 Rekhade 31 23 10 15 79
Prateek
Prashant
38 Natrajan 27 21 7 15 70
Aryaman -
39 Zende 28 25 13 13 79
Onkar
Rajaram
40 Lohar 13 20 5 15 53
Pradnya
Sachin
41 Kinikar 29 22 13 15 79
Arnav
Nagesh
42 Mahindrak 19 22 11 13 65
ar
Tejaswini
Laxmikant
43 Swain 30 27 12 15 84
Shubhanka
r Rajendra
44 Nalawade 32 25 11 15 83
Pranjali
Vidhyadha
r
45 Wagh 21 11 6 14 52
Digvijay
Shantaram
46 . Keshav - 17 24 11 15 67
47 Chavan 28 27 12 15 82
Pradnesh
Nagesh
48 Dongare 26 22 10 13 71
Atharva
Pradip
49 Jain 31 27 15 13 86
Agrima -
50 Samudre 16 20 12 13 61
Shrinivas
Shrikant
51 Admane 32 21 10 13 76
Swapnil
Sunil
52 Joshi Ishita 30 26 12 15 83
Pranav
53 Kudale 24 29 12 13 78
Sahil Sunil
54 Mishra 17 28 11 13 69
Tanu
Rajkumar
55 Solanki 29 23 0 15 67
Hassam
Ahmed
56 Kadam 24 15 7 13 59
Sayali
Dattatray
57 Jare Nikhil 6 19 9 0 34
Devrao
58 Kadam 24 26 13 0 63
Sanika
Vijay
59 Anant 31 23 11 15 80
Rabboni
Rajiv
60 Adsare 31 27 12 15 85
Vedant
Nanasaheb
61 Gosavi 31 21 13 15 80
Pramod
Santosh
62 Kapadia 34 24 13 15 86
Khushi
Shirish
63 Kolhatkar 25 24 8 13 70
Akash
Umesh
64 Malji 0 24 13 15 52
Shruti
Deepak
65 Naykodi 0 27 0 0 27
Neha
Navnath
66 Bhujbal 31 28 12 15 86
Abhishek
Ashok
FYBSc (Computer Science) Div-B CCA
Dr. Vishwanath Karad MIT World Peace University
Faculty of Science
Pune- 411038, District- PUNE (MAHARASHTRA)

Phone:- 020 79401700 Fax No.:- 020 25442770


Email:- admissions@mitwpu.edu.in

Website :- www.mitwpu.edu.in

Faculty of Science
(C Programming - TH (SEMESTER-I)) Subject Wise(Actual Mark-ALL Entity) Report for (FY B.Sc
(CS)(SEM)-B) Section : 2022-2023
END TERM
NAME OF MIDTER SURPRIS
Sr.No. EXAMINATIO WRITTEN TEST Total
STUDENT M E TEST
N
Bedadur Soham
1 22 23 4 13 62
Anand
Rehman Shaikh
2 0 22 0 15 37
Matur
Jadhav Akash
3 21 8 15 61
Chandrakant 17

Wagh Asmi
4 23 24 8 15 70
Bhimrao
Mahajan Ramya
5 23 26 9 15 73
Kamlesh
More Atharv
6 16 15 12 15 58
Prakash
Patel Nayan
7 0 19 4 13 36
Suresh
Soni Manak
8 36 23 8 15 82
Ashokkumar
Suryawanshi
9 34 26 8 15 83
Hrishikesh -
Gadate Neha
10 0 18 11 13 42
Ram
Wakode Om
11 13 21 8 13 55
Gurunath
Mhaske Tushari
12 0 22 9 13 44
Dattatraya
Tamboli Alam
13 16 20 8 13 57
Ajim
14 Kumar Ayush - 34 28 12 15 89
Shirke Sujal
15 17 20 8 15 60
Sudhir
Deshpande
16 Bhargav 17 23 6 15 61
Dhananjay
Pawar Vaishnavi
17 24 22 8 13 67
Baban
Shende Om
18 24 18 6 13 61
Rajesh
19 Soni Harshita - 23 23 6 15 67
Doifode Ranveer
20 10 5 8 13 36
Dayanand
Shilimkar
21 Shravani 17 25 12 15 69
Krushnakumar
Choudhary
22 Dhanraj 23 10 8 13 54
Gomaram
Panhalkar Hrushil
23 0 10 7 15 32
Hemant
24 Gadia Aditya Atul 16 25 6 13 60
Nikam Prasad
25 21 25 6 13 65
Ramrao
Kotkar Vishal
26 30 25 9 15 79
Swapnil
Sathiyajith
27 28 23 5 14 70
Vijayan
Ekbote Sonali
28 0 25 6 13 44
Satish
Kale Atharv
29 0 15 7 15 37
Hanumant
Thorat Om
30 20 22 9 15 66
Rajendra
Bhayekar
31 18 20 11 13 62
Harshada Nischal
Thakare Sakshant
32 16 24 10 15 65
Dilip
Borade Yash
33 0 24 8 7 39
Rajendra
Hagawane Aditya
34 21 19 11 15 66
Vikram
Pande Subodh
35 26 20 11 15 72
Milind
Tarate Anurag
36 18 18 7 13 56
Kisan
Zore Atharva
37 30 20 7 13 70
Vijay
Bhosale Pratik
38 23 22 6 13 64
Kishor
Kokate Pranav
39 26 25 10 15 76
Sachin
40 Patil Atharva Ajay 0 20 6 13 39
41 Mali Karan - 32 27 11 15 85
Mehta Pratham
42 28 26 6 13 73
Vinod
Mishra
43 Ratneshkumar 27 22 7 13 69
Santoshkumar
Gadekar Sarthak
44 31 23 8 13 75
Karbhari
Thite
45 Prathamesh 16 18 8 15 57
Mayuresh
Suryawanshi
46 14 17 9 13 53
Esha Balasaheb
Borgaonkar
47 28 10 9 15 62
Pranav Prabhakar
Madurkar
48 37 28 12 15 92
Chinmay -
More Pankaj
49 0 17 0 13 30
Pundlik
50 Okkasa Md - 23 24 9 14 70
Vispute Aary
51 25 22 10 7 64
Pranay
Zanjad Vaishnavi
52 27 17 10 15 69
Raju
Mapari Tanuja
53 0 19 10 13 42
Anil
Shelke Vaibhav
54 16 17 10 13 56
Vitthal
Mankar Sakshi
55 28 30 9 13 80
Rajendra
Deshpande
56 0 12 10 15 37
Aakriti Amol
Tarate Gauri
57 13 7 10 13 43
Sanjay
Vaze Neeraj
58 22 24 7 15 68
Harshal
Parida Aslesha
59 17 26 8 13 64
Bharadwaj
Roy Sameer
60 0 23 0 15 38
Nandukumar
Gaikwad
61 12 22 11 15 60
Rajeshree Nilesh
Korhale Atharv
62 0 20 6 15 41
Ganesh
Buttepatil
63 Maheshwari 30 25 9 13 77
Amar
Waghmare
64 Vaishnavi 12 18 9 13 52
Subhash
CO – PO Mapping
Faculty Feedback

You might also like