18
 Term Paper of OoPS CSE-202 TOPIC:- “FEE Structure OF University ” DOA:-10\09\2009 DOS:- 05\12\2009 SUBMITTED TO: SUBMITTED BY:  Jagriti Sharma mam GURSHARAN SINGH Deptt. Of CSE ROLL NO:1802 A21

1802 A 21

Embed Size (px)

Citation preview

Page 1: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 1/18

Page 2: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 2/18

  REGN NO-

10802763

This is to certify that the projectentitled “FEE Structure University ”carried out by the GURSHARANSINGH in Btech cse has beenaccomplished under my guidanceand supervision. This is originalwork and has not been submittedby him anywhere else for award of any Degree/Diploma. All sources

are completed under our guidanceand supervision. The assistanceand help rendered during thecourse of investigation has beenduly acknowledged. 

Lec. Jagriti Sharma

Faculty

Lovely Institute of Management

Page 3: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 3/18

Page 4: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 4/18

The entire term paper would nothave come to a state of fruition

without them. During term paperwork, I learnt many things.Everybody was extremely co-operative. I thank all the membersof ‘LOVELY PROFESSIONALUNIVERSITY’ who extended theirhands for help, co-operation andkindness whenever and whereverrequired.

Thanks 

Requirement Analysis:-

1. Borland C++ or Turbo C++ complier required.

2. Minimum PC-XT or PC-AT-286 or PS/2.

Page 5: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 5/18

3. Operating system:-

DOS (Disk Operating System)

Or 

Any Microsoft Windows Operating System or Linux/Unix Operating

System

Minimum Version 2.0 for Turbo C++ (TC)

Or 

Minimum Version 3.0 for Borland C++(BC) MS-Windows-95 which

is optional.

4. RAM(Random Access Memory):-

Minimum 640 kb (kilobytes)

5. Hard Disk:-Minimum 6MB Hard disk for permanent storage of C++

complier and its related files.

6. One Floppy Disk Drive (1.44 MB).

7. One CD-Drive for C++ complier installation.

8. 80 column monochrome or color monitor.

9. Mouse (for Windows Based C++ compiler.

10.One keyboard for Program Editing.

 

CONTENTS 

1. Introduction of C++language

Page 6: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 6/18

2. Introduction of fee structureof university 

3. System requirement 

5. Coding of fee structure of university 

7. Requirement analysis

8. System description

9. Testing

10.References

 

Page 7: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 7/18

INTRODUCTION TO C++LANGUAGE 

The major motivating factor in theinvention of object –orientedapproach is to remove some of theflaws encountered in theprocedural approach.OOP treats

data as a critical element in theprogram development and doesnot allow it to flow freely aroundthe system. It ties data moreclosely to the function that operate

on it ,and protect from accidentalmodification from the outsidefunctions.OOP allowsdecomposition of a problem into anumber of entities called objectsand then build data functionsaround these object .The data of an object can be accessed only bythe functions associated with theobject. 

Page 8: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 8/18

 INTRODUCTION TO FEESTRUCTURE OF UNIVERSITY  

As we all know that time is veryprecious and no one is ready towaste his time .so we aredesigning a project that will help tosave the time of people in schools

and colleges .The project helpsthe Student to see the fee detail of the different courses that availablein the university easily and quickly.This software is designed to enter

the courses and details is printedon the screen .The whole detailsof the fee can be seen easily . Thissoftware will help to save the timeand also decrease the mistakesthat are made manually .So wehope that this software will help tosave the Time and data. 

Page 9: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 9/18

SYSTEM REQUIREMENTS 

Hardware Requirements: 

1. Need a PC with standardconfiguration.

2. Need a printer so that we can printout the fee slip and other documents. 

Software Requirements: 

1. Need a C-Program2. C-CompatibleWindows 

Coding of Fee Structure Of 

University#include<iostream.h>

#include<conio.h>

void btech();

void bca();

Page 10: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 10/18

void bba();

void mba();

void mca();

void pharmacy();

void biotech();

void main()

{

int ch;

char c;

lable:

clrscr();

cout<<"******************************************************

****************************";

cout<<"\t\t\tFEE STRUCTURE OF UNIVERSITY";

cout<<"\t\t\t\t\t\t\tMADE BY:NITIN VIG(BTECH CSE)";

cout<<"\n****************************************************

****************************";

cout<<"\n\n\n\t\t\t1.Btech(all stream)";

cout<<"\n\t\t\t2.BCA";

cout<<"\n\t\t\t3.BBA";

cout<<"\n\t\t\t4.MBA";

cout<<"\n\t\t\t5.MCA";

cout<<"\n\t\t\t6.PHARMACY";

Page 11: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 11/18

cout<<"\n\t\t\t7.BIOTECH";

cout<<"\n\nENTER THE COURSE NUMBER";

cin>>ch;

switch(ch)

{

case 1:

{

btech();

}break;

case 2:

{

bca();

}

break;

case 3:

{

bba();

}break;

case 4:

{

mba();

}break;

Page 12: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 12/18

case 5:

{

mca();

}break;

case 6:

{

pharmacy();

}break;

case 7:

{

biotech();

}break;

default :

{

cout<<"enter wrong choice";

}

}

cout<<"\n\nFEE DETAIL OF ANY OTHER COURSE(y/n)";

cin>>c;

if(c=='y' || c=='Y')

{

goto lable;

Page 13: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 13/18

}

else

{

cout<<"\t\t\t\t\t@@@@@@@Bye....Have A Nice

Day@@@@@@@@@@";

}

getch();

}

void btech()

{

long long pd =4000,anualsalary=49500,lab=1000,fee=0;

cout<<"\n\t\t\tFEE DETAIL";

cout<<"\n\n\t\t\tPD="<<pd;

cout<<"\n\n\t\t\tLAB="<<lab;

cout<<"\n\n\t\t\tANUALSALARY="<<anualsalary;

fee=pd + anualsalary + lab;

cout<<"\n\n\t\t\tFEE=RS."<<fee;

}

void bca()

{

long long pd =4000,anualsalary=17000,lab=1000,fee=0;

cout<<"\n\t\t\tFEE DETAIL";

cout<<"\n\n\t\t\tPD="<<pd;

Page 14: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 14/18

cout<<"\n\n\t\t\tLAB="<<lab;

cout<<"\n\n\t\t\tANUALSALARY="<<anualsalary;

fee=pd + anualsalary + lab;

cout<<"\n\n\t\t\tFEE=RS."<<fee;

}

void bba()

{

long long pd =4000,anualsalary=16500,fee=0;

cout<<"\n\t\t\tFEE DETAIL";

cout<<"\n\n\t\t\tPD="<<pd;

cout<<"\n\n\t\t\tANUALSALARY="<<anualsalary;

fee=pd + anualsalary;

cout<<"\n\n\t\t\tFEE=RS."<<fee;

}

void mba()

{

long long pd =4000,anualsalary=60000,lab=1000,fee=0;

cout<<"\n\t\t\tFEE DETAIL";

cout<<"\n\n\t\t\tPD="<<pd;

cout<<"\n\n\t\t\tLAB="<<lab;

cout<<"\n\n\t\t\tANUALSALARY="<<anualsalary;

fee=pd + anualsalary + lab;

Page 15: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 15/18

cout<<"\n\n\t\t\tFEE=RS."<<fee;

}

void mca()

{

long long pd =4000,anualsalary=50000,lab=1000,fee=0;

cout<<"\n\t\t\tFEE DETAIL";

cout<<"\n\n\t\t\tPD="<<pd;

cout<<"\n\n\t\t\tLAB="<<lab;

cout<<"\n\n\t\t\tANUALSALARY="<<anualsalary;

fee=pd + anualsalary + lab;

cout<<"\n\n\t\t\tFEE=RS."<<fee;

}

void pharmacy()

{

long long pd =4000,anualsalary=30500,lab=2000,fee=0;

cout<<"\n\t\t\tFEE DETAIL";

cout<<"\n\n\t\t\tPD="<<pd;

cout<<"\n\n\t\t\tLAB="<<lab;

cout<<"\n\n\t\t\tANUALSALARY="<<anualsalary;

fee=pd + anualsalary + lab;

cout<<"\n\n\t\t\tFEE=RS."<<fee;

}

Page 16: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 16/18

void biotech()

{

long long pd =4000,anualsalary=49500,lab=1000,fee=0;

cout<<"\n\t\t\tFEE DETAIL";

cout<<"\n\n\t\t\tPD="<<pd;

cout<<"\n\n\t\t\tLAB="<<lab;

cout<<"\n\n\t\t\tANUALSALARY="<<anualsalary;

fee=pd + anualsalary + lab;

cout<<"\n\n\t\t\tFEE=RS."<<fee;

}

  Requirement Analysis: 

THE PROJECT WHICH IS GIVEN TO ME I CAN BE

MADE ON ANY WINDOWS LIKE WINDOWS-VISTA WINDOWSXP, WINDOWS 2000. THEMAIN CONDITION IS THAT IT SHOULD HAVEMICROSOFT INSTALLED WITH MICROSOFTWINDOWS AS BASIC NECCESSSITY. THESYSTEM SHOLD HAVE RAM OF 256MB ORMORE. HARD DISK CAPACITY OF 40GB OR

MORE. PROCESSOR MUST BE PENTIUM 3 0R 4WITH C++ COMPILER. 

SYSTEM DESCRIPTION 

Page 17: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 17/18

THE OPERATING SYSTEM USED IN THISPROJECT IS WINDOWSXPIT HAS MICROSOFTOFFICE INSTALLED IN IT. IT HAS RAM OF 2GB.

HARD DISK CAPACITY OF OPERATING SYSTEMIS 160GB. IT CONSISTS OF PENTIUM-4PROCESSOR.THE OPEREATING SYSTEM ALSOHAS C++ COMPILER. THE SYSTEM ALSO HASTYPE CONVERSIONS WHICH CONVERT LOWERTO UPPER TYPE. THE OPERATING SYSTEMHAVE 1GB RAM FOR MICROSOFT WORLD.

TESTING 

THE SOURCECODE DECLARED ABOVE FOR THEPROGRAM OF FACULTY INFORMATION &MANAGEMENT SYSTEM HAS BEEN TESTED ANDIT HAS BEEN FOUND THAT THE ABOVE

SOURCE CODE IS OKAY AND CORRECT.THEPROGRAM INVOLVES MANY TYPE OFCONVERSIONS. THESE CONVERSIONS HAS TODONE CAREFULLY. THE PROGRAMME IS DONEINTEGRATION VISE. 

REFERENCES:-

Page 18: 1802 A 21

8/7/2019 1802 A 21

http://slidepdf.com/reader/full/1802-a-21 18/18

1. Laynetworks.com

2. Vcc components.com3. Cseprojets.org

  4. Google seach engine