100%FINALOOP
100%FINALOOP
SUBMITTED BY –
Sr.
No. Name of Student Roll No.
1 Divya Kashinath 38
Anuse
2 Om Amarsing 39
Rajput
3 Aditi Rajabhau 40
Navghane
YEAR: 2023-24
Certificate
This is to certify that the Micro project work entitled
Mr. V. V. Giri
Principal
DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING
Course Name-OOP
Project Title-
Micro
Exam
Sr. Roll Enrollment Project Tot
Name of Student No. Seat al
No. No. Marks
No.
G I 6+4 =
10
1 38 Divya Kashinath 2216440386
Anuse
2 39 Om Amarsing Rajput 2216440387
3 40 Aditi Rajabhau 2216440388
Navghane
Mr.S.S.Jamadar
CourseFacult&Signature
Program Name – Computer Science & Engineering Program Code – CW-3-I
Course Name –Object Oriented Programming Using C++ Course Csode – 22316
Mapping
INDEX
Sr.
Page No.
CONTENT
No.
1 Abstract 1
2 Introduction 2
Concept used in
3 3
project
4 Algorithm 4
5 C++ programme 5
6 Output 7
7 Conclusion 8
8 Reference 9
Abstract
MAIN FUNCTION: A function is set of statement that takes input, does some
specifies computation, and produced output. The idea is to put some commonly
or repeatedly does task together to make a function so that instead of writing the
same code again and again. For different input, we can call this function. In simple
terms, a function is a block of code that run only when it is called.
ALGORITHM
Step 2: Declare the data members as student roll no, name and division.
#include <iostream>
#include <string>
using namespace std;
struct Student {
string name;
int rollNumber;
int age;
string major;
float gpa;
string address;
string phoneNumber;
};
int main() {
const int MAX_STUDENTS = 5;
Student students[MAX_STUDENTS];
Student Details:
Name: om
Roll Number: 39
Age: 17
Address: kolhapur
Phone Number: 9889765490
Name: prathmesh
Roll Number: 40
Age: 23
Address: sangli
Phone Number: 5687345698
Name: raju
Roll Number: 15
Age: 18
Address: kolhapur
Phone Number: 89809890
Name: omkar
Roll Number: 19
Age: 19
Address: kolhapur
Phone Number: 7898098978
Name: pankaj
Roll Number: 21
Age: 18
Address: kolhapur
Phone Number: 8909876678
CONCLUSION
REFERENCE
https.//sweedu.com
https.//www.hashmicro.com
https.//www.lovelycoding.org