⏳
Loading cheatsheet...
Types of accounts, loans, interest rates, banking services, RBI regulations, digital banking, and financial literacy.
Indian banks offer various account types for different needs. Understanding the right account type helps you maximize returns and manage finances effectively.
| Feature | Savings Account | Current Account |
|---|---|---|
| Purpose | Saving money with interest | Daily business transactions |
| Interest Rate | 3-7% p.a. (bank dependent) | Zero interest |
| Minimum Balance | ₹1K-₹10K (bank dependent) | ₹5K-₹25K |
| Transactions | Limited (3-10 per month free) | Unlimited |
| Overdraft | Rarely available | Common (for business credit) |
| Best For | Individuals, salary credit, saving | Businesses, companies, freelancers |
| Account Type | Description | Interest Rate | Key Feature |
|---|---|---|---|
| Salary Account | Zero-balance salary account linked to employer | 2-4% p.a. | No minimum balance if salary credited |
| Zero Balance | No minimum balance requirement | 2-3.5% p.a. | Good for first-time account holders |
| Senior Citizen | Higher interest for 60+ year olds | 7-7.5% p.a. | Additional 0.50-0.75% over regular |
| Women Savings | Special accounts for women | 3.5-4% p.a. | No minimum balance, discounts on loans |
| Minor/Student | For children and students (under 18/25) | 3.5-4% p.a. | Financial literacy, no minimum balance |
| NRI/NRO/NRE | For Non-Resident Indians | 3-7% p.a. (repatriable) | NRO for rupee deposits, NRE for FCNR |
| Joint Account | Two or more holders | Same as individual | Either or survivor operation mode |
| Digital Savings | Fully online account (FinTech) | Up to 7% p.a. | Highest rates, zero overhead costs |
| FD Type | Tenure | Interest Rate | Premature Withdrawal | Best For |
|---|---|---|---|---|
| Regular FD | 7 days - 10 years | 6.5-7.5% p.a. | 1% lower rate + penalty | Standard fixed-income investment |
| Senior Citizen FD | 7 days - 10 years | 7.0-8.0% p.a. | Same as regular FD | Senior citizens (50-75bp extra) |
| Tax Saving FD (5yr) | 5 years (lock-in) | 6.5-7.0% p.a. | Cannot withdraw | Section 80C tax saving |
| Cumulative FD | Any tenure | Same as regular | Same | Reinvest interest automatically |
| Flexi FD | Any tenure | Same as regular | Can withdraw partially | Emergency fund with FD returns |
| NRE FD | 1-10 years | 6.5-7.5% p.a. | After 1 year | NRI foreign income investment |
| FCNR (B) FD | 1-5 years | Linked to LIBOR/SOFR | After 1 year | NRI foreign currency deposits |
def fd_calculator(principal, rate, years, compounding="quarterly"):
"""
Calculate FD maturity amount.
compounding: quarterly, monthly, or yearly
"""
n = years
if compounding == "quarterly":
effective_rate = (1 + rate/100/4) ** (n*4) - 1
elif compounding == "monthly":
effective_rate = (1 + rate/100/12) ** (n*12) - 1
else:
effective_rate = (1 + rate/100) ** n - 1
maturity = principal * (1 + effective_rate)
interest = maturity - principal
return round(maturity, 2), round(interest, 2)
# Example: ₹10 Lakh FD at 7.1% for 5 years
maturity, interest = fd_calculator(1000000, 7.1, 5)
print(f"Principal: ₹{1000000:,}")
print(f"Interest Earned: ₹{interest:,}")
print(f"Maturity Amount: ₹{maturity:,}")| Feature | Details |
|---|---|
| Purpose | Save fixed amount every month for a set period |
| Minimum Monthly Deposit | ₹100-₹500 (bank dependent) |
| Tenure | 6 months to 10 years |
| Interest Rate | 6.5-7.5% p.a. (compounded quarterly) |
| Premature Withdrawal | Allowed with penalty (lower interest rate) |
| Tax Saving RD | 5-year lock-in, 80C deduction (₹1.5L max) |
| Best For | Building saving discipline, short-term goals (1-3 years) |
def rd_calculator(monthly_deposit, rate, years):
"""Calculate RD maturity amount."""
quarterly_rate = rate / 100 / 4
months = years * 12
maturity = 0
for m in range(1, months + 1):
interest = maturity * quarterly_rate
maturity = monthly_deposit + interest
# Only add interest at quarter end (every 3 months)
if m % 3 == 0:
pass # Interest already in quarterly compounding
# Simplified: use RD formula
# A = P * [(1+i)^n - 1] / [1 - (1+i)^(-1/3)]
i = rate / 100 / 4
n = years * 4
A = monthly_deposit * ((1+i)**n - 1) / (1 - (1+i)**(-1/3))
total_deposited = monthly_deposit * months
return round(A), total_deposited| Loan Type | Interest Rate | Tenure | Processing Fee | Best For |
|---|---|---|---|---|
| Home Loan | 8.5-10.5% | 5-30 years | 0.5-2% | Buying house/flat, tax benefits u/s 80C |
| Car Loan | 8.5-12% | 1-7 years | 0.5-3% | Buying vehicle |
| Personal Loan | 10.5-24% | 1-5 years | 1-3% | Emergency needs, no collateral |
| Education Loan | 8.5-13% | 5-15 years | 0.5-2% | Studies abroad, moratorium period |
| Business Loan | 11-18% | 1-5 years | 1-3% | Business expansion |
| Gold Loan | 10-25% | 6-24 months | 1-3% | Short-term, gold as collateral |
| Loan Against FD | 1-2% above FD rate | Till FD maturity | ₹500-1000 | Lowest cost loan (FD as collateral) |
| Loan Against Property | 9-14% | 1-15 years | 0.5-2% | Business/personal needs |
| Feature | UPI | NEFT | RTGS |
|---|---|---|---|
| Full Form | Unified Payments Interface | National Electronic Funds Transfer | Real Time Gross Settlement |
| Operated By | NPCI (RBI) | RBI | RBI |
| Transfer Speed | Instant (24x7) | Hourly batches (2hr cycles) | Instant (24x7) |
| Min Amount | ₹1 | ₹1 | ₹2 lakh |
| Max Amount | ₹1 lakh | No limit | ₹10 lakh |
| Fees | Free for most banks | Free (for bank customers) | ₹25-₹55 per transaction |
| Best For | Daily payments, small amounts | Scheduled transfers | Large, urgent transfers |
| Settlement | Near-instant | Within 2 hours | Within 30 minutes |