You are on page 1of 16

JAIRAM PUBLIC SCHOOL (SENIOR SECONDARY)SALEM.

ACADEMIC YEAR: 2022-2023


A PROJECT REPORT ON
“CREATE A BANK ACCOUNT”

SUBMITTED BY
ROLL NO :
NAME : SRI KRISHNA. B

CLASS : XI
SUBJECT : COMPUTER SCIENCE
: 083
SUB CODE

PROJECT GUIDE: Mr. M.VISWANATHAN


PGT (COMPUTER SCIENCE)

DEPARTMENT OF COMPUTER SCIENCE

JAIRAM PUBLIC SCHOOL

SALEM.

1
JAIRAM PUBLIC SCHOOL SALEM

CERTIFICATE

This is to certify that Cadet (SRI KRISHNA. B) Roll No:

_______________________has successfully completed the project work entitled “CREATE

A BANK ACCOUNT” in the subject Computer Science (083) laid down in the regulations

of CBSE for the purpose of Practical Examination in Class XII to be held in Jairam Public

School on ___________________.

INTERNAL GUIDE PRINCIPAL

INTERNAL EXAMINER EXTERNAL EXAMINER

2
ACKNOWLEDGEMENT

Apart from the efforts for me, the success of my project depends largely on the
encouragement and guidelines of many others. I take this opportunity to express my gratitude
to the people who have been instrumental in the successful completion of this project.

I express deep sense of gratitude to almighty God for giving me strength for the
successful completion of the project.

I express my heartfelt gratitude to my parents for constant encouragement while carrying


out this project.

I express my sincere gratitude to our honorable Principal Mr. I. PAUL FRANCIS


XAVIER, Jairam Public School who has been continuously motivating and extending their
helping hand to us.

I express my sincere thanks to our CO-ORDINATORS, Jairam Public School Salem,


for constant encouragement and the guidance provided during this project.

My sincere thanks to Mr. M.VISWANATHAN, A guide, Mentor all the above a friend,
who critically reviewed my project and helped in solving each and every problem, occurred
during implementation of the project.

The guidance and support received from all the members who contributed and who are
contributing to this project, was vital for the success of the project. I am grateful for their
constant support and help.

3
CONTENTS

ABSTRACT

1. INTRODUCTION …………………………………… 6

2. SYSTEM REQUIREMENTS ……………………………. 7

2.1 Hardware Requirements

2.2 Software Requirements

3. Flow chat……….......................……………………………. 8

4. SOURCE CODE …………………………………………... 10

5. OUTPUT …………………………………………………. 13

6. CONCLUSION …………………………………….………. 15

7. BIBLIOGRAPHY ……………………………………. 16

4
CREATE A BANK ACCOUNT

ABSTRACT:

●Python is an interpreted, object-oriented, high-level programming

language with dynamic semantics developed by Guido van Rossum. It was ⁶

originally released in 1991. Designed to be easy as well as fun, the name as

“python”

●This is high level but not very high when we

●Compared with c++ , c and Java. I created some code

5
INTRODUCTION

1. INTRODUCTION

The python programming helped to improve our coding skills. There are many functions and

modules available in the python Idle. I presented some programs for improving my coding

skill. I used for loop if else and elif statements and conditional statements. Also, l used range

() in the code

6
SYSTEM REQUIREMENTS

2. HARDWARE AND SOFTWARE REQUIREMENTS

2.1 HARDWARE REQUIREMENTS

PROCESSOR : Intel(R) Pentium(R) CPU G4400.

MOTHERBOARD : H110M-S2-CF

RAM : 4.00 GB

HARD DISK : 250 GB

MONITOR

KEYBOARD AND MOUSE

PRINTET

2.2 SOFTWARE REQUIREMENTS

OPERATING SYSTEM : Windows10

FRONT-END : Python 3.9

BACK-END : My SQL

7
FLOW CHART

8
9
Source code

print("National Bank of India") print("Welcome to our

bank") print("Enter your details for creating an bank

account") name=(input("enter your name:"))

phone=int(input("enter your phone number:"))

dob=(input("enter your Date of Birth:"))

add=(input("enter your state:")) dis=(input("enter

your district:")) ad=(input("enter your address:"))

print("Your Bank account created successfully")

f=input("borrow or deposit:") if(f=="deposit"):

e=int(input("enter the no. of months for

deposit:")) g=e+1 for i in range(1,g):

k=int(input("amount you are going to put this month:"))

print("interest 3%","amount you have this month",k*0.03+k)

a=k*0.03+k b=a*g print("total amount in your account:",b)

elif(f=="borrow"):

e=int(input("enter the no. of months you will return the money with interest

5%")) g=e+1 for i in range(1,g):

r=int(input("amount you are going to borrow:"))

print("monthly interest 5%")

break a=r*0.05+r b=a*g print("the

total amount you have to pay:",b)

n=input("Enter the amount you have to pay:")

if(n==b):

print("Thank you for print("National Bank of India")

print("Welcome to our bank") print("Enter your

details for creating an bank account")

10
name=(input("enter your name:"))

phone=int(input("enter your phone number:"))

dob=(input("enter your Date of Birth:"))

add=(input("enter your state:")) dis=(input("enter

your district:")) ad=(input("enter your address:"))

print("Your Bank account created successfully")

f=input("borrow or deposit:") if(f=="deposit"):

e=int(input("enter the no. of months for deposit:"))

g=e+1 for

i in range(1,g):

k=int(input("amount you are going to put this month:"))

print("interest 3%","amount you have this month",k*0.03+k)

a=k*0.03+k b=a*g

print("total amount in your account:",b)

elif(f=="borrow"):

e=int(input("enter the no. of months you will return the money with interest 5%"))

g=e+1

for i in range(1,g):

r=int(input("amount you are going to borrow:"))

print("monthly interest 5%")

break a=r*0.05+r b=a*g print("the

total amount you have to pay:",b)

n=input("Enter the amount you have to pay:")

if(n==b): print("Thank you for borrowing

money from us")

else:

print("pay the money you have borrowed")

m=input("Enter the amount you have to pay:")

11
print("Thank you for borrowing money from us")

else: print("ERROR",":","try again")

12
Output

13
14
CONCLUSION

Hence, the project is successfully tested and the output is

15
BIBLIOGRAPHY

1. I referred the National Bank of India page in online to complete this project
2. Computer science With Python - Class XI By : SumitaArora and NCERT

16

You might also like