0% found this document useful (0 votes)
79 views9 pages

A Synopsis Project On ATM Management System: Echelon Institute of Technology, Faridabad

The document summarizes a synopsis project on an ATM Management System submitted by Ankit, a student at Echelon Institute of Technology, Faridabad. The project aims to design a system to control a simulated ATM. It will include modules for branch accounting, account databases, and maintenance. Benefits are that customers can access cash anywhere and transactions provide privacy. The future may see personalized ATMs and touchscreens running Windows 10. The synopsis provides details on the project structure, objectives, timeline, and includes declarations by Ankit and their advisor.

Uploaded by

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

A Synopsis Project On ATM Management System: Echelon Institute of Technology, Faridabad

The document summarizes a synopsis project on an ATM Management System submitted by Ankit, a student at Echelon Institute of Technology, Faridabad. The project aims to design a system to control a simulated ATM. It will include modules for branch accounting, account databases, and maintenance. Benefits are that customers can access cash anywhere and transactions provide privacy. The future may see personalized ATMs and touchscreens running Windows 10. The synopsis provides details on the project structure, objectives, timeline, and includes declarations by Ankit and their advisor.

Uploaded by

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

ECHELON INSTITUTE OF TECHNOLOGY, FARIDABAD

JAN 2021-JULY 2021

A Synopsis Project on ATM Management System


of

Bachelor of Technology
In

DEPARTMENT OF COMPUTER SCIENCE & ENGINEERING

Name- Ankit

College Roll no- 20-CSE-009

University roll number-


CANDIDATE DECLARATION
______________________________________________

I hereby declare that mini project work being presented in


this report entitled “ATM Management System”
submitted in the department of computer science, Faculty
of Technology, Echelon Institute of Technology,
Faridabad is the authentic work carried out by me under
the guidance of Mrs. Anita Rawat, Department of
Computer Science, Echelon Institute of Technology.

Date- 8/10/2021 Ankit


B.tech CSE, 3rd SEM
CERTIFICATE
______________________________________________

This is to certify that this project represent the original


work done by Ankit during this project submission as a
partial fulfillment of the requirement for the synopsis
project, Bachelor of Technology, Echelon Institute of
Technology, Faridabad.

Date- 8/10/2021 Ankit


B.tech CSE, 3rd SEM
ACKNOWLEDGEMENT
______________________________________________

I would like to express my special thanks of gratitude to


my teacher, Mrs. Anita Rawat, who gave me the golden
opportunity to do this wonderful Project on the topic
“ATM Management System” which also helped me in
doing a lot of Research and I came to know about so
many things I am really thankful to them.

Date- 8/10/2021 Ankit


B.tech CSE, 3rd SEM
SYNOPSIS

1. TITLE OF PROJECT:-
ATM Management System

2. OBJECTIVE OF THE PROJECT:-


The project to be designed will control a
simulated automated teller machine (ATM)
having a magnetic stripe reader for reading an
ATM card, a customer console (keyboard and
display) for interaction with the customer.

3. PROJECT CATEGORY:-
RDBMS

4. LANGUAGE AND SOFTWARE TOOL USED:-


Front end: C
Operating System: Windows 10

5. STRUCTURE OF THE PROJECT:-


 PROPOSED SYSTEM: - The customer can
withdraw or deposit cash up to a certain
limit during any time of the day or night.
 MODULE DESCRIPTION:-
Branch Accounting System:-
This system contains several branches’
information for example the number of
users, etc. Whenever ATM card will be
swiped the ATM system will refer this
system and then proceed.

Account Database:-
The account database consists of details of
different accounts of users from different
branches. It will contain the account status
of the user which gets referred during
transactions.

Branch Counter System:-


This database keeps the count of branches
and will accommodate any changes made
with branches and its users.

Maintenance System:-
This system will maintain the cash fed into
the machine. If the machine goes out of
cash, prompt regarding the same will be sent
by the machine to the users and the main
database from where it will be sent to the
ATM managers.
 BENEFICIARY:-
They need not carry a large amount of cash
with them. They can withdraw cash from
any city or state, across the country and
even from outside the country with the help
of ATM.

 PRIVACY:-
ATM provide privacy in banking transactions of
the customer.

6. FUTURE SCOPE:-
 The future will see multi-vendor ATM
popularity, which will provide personalized
features and a user friendly interface. ATM
will be a popular "Public Technology".
 The ATM technology has developed to such
an extent that some ATMs can memorize
consumer preferences as per their past
transactions, behavior, and tailor services
accordingly.
Long gone are the prevalence of simple, single-
function ATMs. Advances in technologies have
allowed ATMs to follow digital trends over the
years. These days are most ATMs have touch-
screen computers running on Microsoft’s
Windows 10.
SOFTWARE REQUIREMENT:-
C Language

#include<stdio.h>
#include<conio.h>
int main()
{
float x,y;
char ch;
printf("Enter initial amount\n");
scanf("%f",&x);
printf("Enter \nc for credit\nd for debit\nb for balance\n");
scanf("\n%c",&ch);
switch(ch)
{
case 'c':
printf("Enter credit amount\n");
scanf("%f",&y);
x=x+y;
printf("New Amount=%f",x);
break;
case 'd':
printf("Enter debit amount\n");
scanf("%f",&y);
if(x>=y)
{
x=x-y;
printf("New Amount=%f",x);
}
else
{
printf("Insufficient amount in your account");
}
break;
case 'b':
printf("Amount in your account=%f",x);
break;
default:
printf("Choose correct option for operation");
}
}

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy