Saturday, August 12, 2017

Code Review: School Management System

Complier or Tool: Code::Block

Programming Language: C++

User Interface Type: CUI [Character User Interface]

Description:

This School Management System allows school administrative staff to maintain their employee database with details such as experienced years, age, designation and code. Even though the system is very small it teaches how to code simple system of RAM type [i.e., not file handling support system] in C++ language.

The System contains one class, employee with following properties and methods:

clip_image001

The main() function presents main menu and becomes single point entry and exit code. The main() function call graph is as follows:

clip_image002

The menu presented by this main() function is as follows:

Employees Management System 1.0

Press b ----> Built The Employee Table

Press l ----> List The Employee Table

Press i ----> Insert New Entry

Press d ----> Delete An Entry

Press e ----> Edit An Entry

Press s ----> Search A Record

Press n ----> Sort the Table

Press q ----> Quit Program

Select Your Option Please ====>

 

The system uses manipulators to arrange data on screen and seven functions are used to manage the system.

Total code lines for this system are 800 lines [approximately]. It is a most suitably called as mini project in C++ language.

Note: For source code and other details send request e-mail specifying project name: SchoolManagementSys_07082017 to mailforprojects@rediffmail.com. Add your comments in below available comment box.

Note: Click these label/tags to view all related posts. Tags: C++MiniProject

 

…till next post, bye-bye & take care.

Friday, August 11, 2017

Code Review: School Fee Enquiry System

Complier or Tool: Code::Block

Programming Language: C++

User Interface Type: CUI [Character User Interface]

Description:

This School Fee Enquiry System is nothing but acts like Kiosk in school to show the all division fee structure to parents. Even though the system is very small it teaches how to code simple system of RAM type [i.e., not file handling support system] in C++ language.

The System contains two class DRAW() and FEE() class with following properties and methods:

clip_image002 clip_image004

The main() function presents main menu and becomes single point entry and exit code. The main() function call graph is as follows:

clip_image006

The menu presented by this main() function is as follows:

Press corresponding keys

F: FEE SLIP

M: MODIFY

L: LIST

H: HELP

Q:QUIT

 

The system can be used to view fee slip, modify fee structure of particular class and list of all class fee amounts.

Total code lines for this system are 778 lines [approximately]. It is a most suitably called as mini project in C++ language.

Note: For source code and other details send request e-mail specifying project name: SchoolFeeEnquirySys_07082017 to mailforprojects@rediffmail.com. Add your comments in below available comment box.

Note: Click these label/tags to view all related posts. Tags: C++MiniProject

 

…till next post, bye-bye & take care.

Thursday, August 10, 2017

Code Review: PDF Batch File System

Complier or Tool: Code::Block

Programming Language: C++

User Interface Type: CUI [Character User Interface]

Description:

This System level utility tool allows user to search PDF files in user selected location: either Folder level or Hard disk partition level. Even though the system is very small it teaches how to manipulate system calls and implement find and search action in C++ code lines. It is of RAM type i.e., not file handling support system or saving the outputted data to file.

The System many low level header files, and include dependency graph is as follows:

clip_image001

The main() function presents main menu and becomes single point entry and exit code. The main() function call system() function for its task execution.

The menu presented by this main() function is as follows: It asks user to enter the choice of searching .pdf files in folder or disk level.

The system designing includes creating opening screen, string manipulation and system level function calls etc.

Total code lines for this system are 50 lines [approximately]. It is a most suitably called as mini project in C++ language.

Note: For source code and other details send request e-mail specifying project name: PDFBatchFileSys_07082017 to mailforprojects@rediffmail.com. Add your comments in below available comment box.

Note: Click these label/tags to view all related posts. Tags: C++MiniProject

 

…till next post, bye-bye & take care.

Wednesday, August 9, 2017

Code Review: Hang Man Game System

Complier or Tool: Code::Block

Programming Language: C++

User Interface Type: CUI [Character User Interface]

 

Description:

This Hang Man Game System teaches how to code strings and manipulate them wisely. Even though the system is very small it teaches how to code simple system of RAM type i.e., Not file handling support system in C++ language.

The System contains only two public functions: main() and type_of_word(). The include files called or included in this system are as follows:

clip_image001

The main() function presents main menu and becomes single point entry and exit code. The system manipulates words and strings hence “cstring.h” file is included. For better performance system() function is also used.

The menu presented by this main() function is as follows:

HANGMAN IN C++

<E> Enter a Word

<C> Computer chooses word

<A> Add new word to list

<Q> Quit

Enter your choice < E – C – Q>:_

 

The system reads hangword.txt file for beforehand stored names from categories Animal-Movie-Sports-Song. The string comparing, identifying and taking proper actions for selected words etc. are the job of source code.  

Total code lines for this system are 124 lines [approximately]. It is a most suitably called as mini project in C++ language.

Note: For source code and other details send request e-mail specifying project name: HangManGameSys_07082017 to mailforprojects@rediffmail.com. Add your comments in below available comment box.

Note: Click these label/tags to view all related posts. Tags: C++MiniProject

 

…till next post, bye-bye & take care.

Tuesday, August 8, 2017

Code Review: Bus Reservation System

Complier or Tool: Code::Block

Programming Language: C++

User Interface Type: CUI [Character User Interface]

Description:

This Bus Reservation System is nothing but automating reservation process of bus. Even though the system is very small it teaches how to code simple system of RAM type [i.e., not file handling support system] in C++ language.

The System contains one class with following properties and methods:

clip_image001

The main() function presents main menu and becomes single point entry and exit code. The main() function call graph is as follows:

clip_image002

The menu presented by this main() function is as follows:

Bus Reservation System

1. Install Bus

2. Enter Reservation

3. Show Bus Status

4. Available Buses List

5. Exit

Enter your choice:_

 

The system designing includes creating bus seat layout, their status whether empty or occupied, if occupied passenger's name, bus schedule and details, all available buses list etc.

Total code lines for this system are 226 lines [approximately]. It is a most suitably called as mini project in C++ language.

Note: For source code and other details send request e-mail specifying project name: BusReservationSys_07082017 to mailforprojects@rediffmail.com. Add your comments in below available comment box.

Note: Click these label/tags to view all related posts. Tags: C++MiniProject

 

…till next post, bye-bye & take care.