You are on page 1of 7

COURSE CSC-113(COMPUTER

PROGRAMMING )
TERM: FALL 2020, CLASS :BS(IT) 1(A)

ASSIGNMENT NO#01
Submitted By: Faraz

EN-NO 02-235202-035

Submitted to: sir tarwan kumar

25/10/2020
Flowchart:

Question_01:

Consider a scenario in which the ATM machines of Auditor Forum Bank contain
biometric security including other than customary PIN control. The clients of Auditor
Forum Bank have a decision either to utilize Card + PIN or Card + Biometric alternative.
Clients of different banks can likewise pull back money from AFB's ATM; be that as it
may, they can just utilize Card + PIN alternative. A client's card is caught by the
machine after three successive fruitless endeavors.

Required

You are required to set up a flowchart demonstrating the cycle of money withdrawal
from AFB's ATM. Expect that exchanges other than money withdrawals are not
permitted.
Question _02:
Write a C++ program in which the basic salary of an employee is taken as input from
the user. Calculate the allowance, house rent and gross salary and display the gross
salary of an employee by meeting following criteria.

If the basic salary is greater than or equal to $4500, employees will get 15% allowance
of the basic salary and 12% house rent of the basic salary.
If the basic salary is less than $4500 but greater than $1500, the employee will get a
10% allowance of the basic salary and 5% house rent of the basic salary.
If the basic salary is less than or equal to $1500, the employee won’t get any
allowance or house rent.
Question_03:
Write a C++ program that asks for the actual speed and speed limit of a car from the user, and
calculate the over limit. Over limit should meet the following condition.
If over limit greater than or equal to 25, then charge a fine of $215.
If the over limit is less than 25 but not 0, then there is no charge for that.

You might also like