0% found this document useful (0 votes)
7 views2 pages

Real Management System Questions

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

Real Management System Questions

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

Real Management System Questions

1. Employee Record Management (No File I/O)


Write a C program to manage employee records. Each employee has the following
information:

ID (integer)
Name (string)
Age (integer)
Department (string)
Salary (float)
Your program should allow the user to:

Add a new employee record


Display all employee records
Search for an employee by ID
Delete an employee record by ID
Modify an employee's details (name, age, department, salary)
You should store the employee records in an array and use functions to perform
operations like add, delete, display, and modify records.

2. Student Record System


Create a C program to manage student records for a class. Each student has:

Roll Number (integer)


Name (string)
Marks (float)
Your program should:

Allow the user to input the records for 10 students


Display all student records
Find the student with the highest marks
Find the student with the lowest marks
Modify a student’s marks
3. Product Inventory System
Write a C program that manages a product inventory. Each product has:

Product ID (integer)
Name (string)
Quantity (integer)
Price (float)
The program should allow the user to:

Add new products


Modify product details
Display all products in the inventory
Search for a product by ID
Delete a product by ID
4. Library Book Management System
Implement a C program to manage books in a library. Each book has:

Book ID (integer)
Title (string)
Author (string)
Year of Publication (integer)
Quantity Available (integer)
The program should:

Add new books to the library


Modify book details (title, author, year, or quantity)
Display the list of books
Search for a book by ID or by title
Delete a book from the library
5. Bank Account System
Write a C program to manage bank accounts. Each account has:

Account Number (integer)


Name (string)
Balance (float)
Your program should allow the user to:

Create a new account


Deposit funds into an account
Withdraw funds from an account
Display account details (account number, name, and balance)
Delete an account (set its balance to 0)
6. Library Loan System
Create a C program for a library loan system. Each loan record contains:

Loan ID (integer)
Book ID (integer)
Member Name (string)
Loan Date (string)
Return Date (string)
The program should:

Add a loan record


Display loan records
Search for a loan record by Loan ID or Member Name
Delete a loan record after return date

You might also like