Project Harsath
Project Harsath
•
SUBMITTED BY THE GROUP
HARSATH P.M
INBA G.S
HARSHVARDHAN.G
IN ACADEMIC YEAR
2024 - 2025
PLACE :
DATE :
TABLE OF CONTENTS
SER DESCRIPTION PAGE NO
1. ACKNOWLEDGEMENT
2. INTRODUCTION
3. OBJECTIVES OF THE PROJECT
4. PROPOSED SYSTEM
5. SYSTEM DEVELOPMENT LIFE CYCLE
6. PHASE OF SYSTEM DEVELOPMENT LIFE CYCLE
7. FLOW CHART
8. SOURCE CODE
9. OUTPUT
10. TESTING
11. HARDWARE AND SOFTWARE REQUIREMENTS
12. INSTALLATION PROCEDURE
13. BIBLIOGRAPHY
• ACKNOWLEDGEMENT
INTRODUCTION
PROPOSED SYSTEM
• The System Development Life Cycle (SDLC) followed for this project
includes the following phases:Planning: Identifying the requirements
and objectives of the project.Analysis: Analyzing the requirements and
feasibility of the system.Design: Designing the system architecture and
user interface.Implementation: Coding and developing the
system.Testing: Testing the system for errors and bugs.Deployment:
Deploying the system for use.Maintenance: Regular updates and
maintenance of the system
SOURCE CODE
(Provide the acutual code for the system,here’s a simple example in
python)
Python
Copy code
Class BankAccount:
def_init_(self,account_number,account_holder,balance=0):
self.account_number=account_number
self.account_holder=account_holder
self.balance = balance
def deposit(self, amount):
self.balance += amount
print(f"Deposited: {amount}, New Balance: {self.balance}")
def withdraw(self, amount):
if amount <= self.balance:
self.balance -= amount
print(f"Withdrew: {amount}, New Balance: {self.balance}")
else:
print("Insufficient balance")
def check_balance(self):
print(f"Account Balance: {self.balance}")
# Example Usage
account = BankAccount(123456, "John
Doe")account.deposit(1000)account.withdraw(500)account.check_bal
ance(
account = BankAccount(123456, "JohnDoe“)
account.deposit(1000)
account.withdraw(500)
account.check_balance()
OUTPUT
Yaml
Copy code
Deposited: 1000, New Balance: 1000
Withdrew: 500, New Balance: 500Account
Balance: 500
TESTING
INSTALLATION PROCEDURE