* Calculations assume the selected compounding frequency. Central Bank of India typically compounds interest quarterly for standard FDs. TDS deduction is not applied in this calculation.
// Logic to auto-adjust rate for senior citizens visually
function adjustRateForSenior() {
var rateInput = document.getElementById('cbi_interest_rate');
var isSenior = document.getElementById('cbi_senior_citizen').checked;
var currentRate = parseFloat(rateInput.value);
if (!isNaN(currentRate)) {
if (isSenior) {
// Add 0.50
rateInput.value = (currentRate + 0.50).toFixed(2);
} else {
// Remove 0.50
rateInput.value = (currentRate – 0.50).toFixed(2);
}
}
}
function calculateCBIMaturity() {
// 1. Get Inputs
var principal = parseFloat(document.getElementById('cbi_deposit_amount').value);
var ratePercent = parseFloat(document.getElementById('cbi_interest_rate').value);
var frequency = parseInt(document.getElementById('cbi_compounding').value);
var years = parseFloat(document.getElementById('cbi_tenure_years').value) || 0;
var months = parseFloat(document.getElementById('cbi_tenure_months').value) || 0;
// 2. Validation
if (isNaN(principal) || principal <= 0) {
alert("Please enter a valid Deposit Amount.");
return;
}
if (isNaN(ratePercent) || ratePercent < 0) {
alert("Please enter a valid Interest Rate.");
return;
}
if (years === 0 && months === 0) {
alert("Please enter a valid Tenure (Years or Months).");
return;
}
// 3. Calculation Logic (Compound Interest Formula)
// A = P(1 + r/n)^(nt)
// t must be in years
var totalYears = years + (months / 12);
var r = ratePercent / 100;
var n = frequency; // Compounding frequency per year
// Total number of times interest is compounded
var totalCompoundingEvents = n * totalYears;
var maturityAmount = principal * Math.pow((1 + (r / n)), totalCompoundingEvents);
var interestEarned = maturityAmount – principal;
// 4. Formatting Output (Indian Currency Format)
var formatter = new Intl.NumberFormat('en-IN', {
style: 'currency',
currency: 'INR',
minimumFractionDigits: 0,
maximumFractionDigits: 0
});
// 5. Display Results
document.getElementById('display_principal').innerText = formatter.format(principal);
document.getElementById('display_interest').innerText = formatter.format(interestEarned);
document.getElementById('display_maturity').innerText = formatter.format(maturityAmount);
document.getElementById('cbi_result_box').style.display = 'block';
}
Understanding Central Bank of India Fixed Deposit Rates
The Central Bank of India (CBI) offers a variety of Fixed Deposit (FD) schemes designed to provide guaranteed returns on your savings. Whether you are a regular depositor or a senior citizen, understanding how your maturity amount is calculated is crucial for financial planning. This calculator helps you determine the interest you will earn based on the current applicable rates.
How CBI FD Interest is Calculated
Like most public sector banks in India, the Central Bank of India calculates interest on Fixed Deposits based on the compounding frequency.
Principal Amount (₹): The lump sum amount you invest initially.
Tenure: The period for which you invest your money. CBI offers tenures ranging from 7 days to 10 years.
Interest Rate (%): The rate of return offered by the bank. This varies based on the tenure and amount.
Compounding Frequency: For standard Fixed Deposits with a tenure of 6 months or more, interest is typically compounded quarterly. This means you earn interest on your interest every three months, maximizing your yield.
Special Considerations for CBI Customers
When using the Central Bank of India fixed deposit rates calculator, keep the following specific bank rules in mind:
Senior Citizen Benefits: Central Bank of India usually offers an additional interest rate premium (typically 0.50%) to senior citizens (aged 60 years and above) over the standard card rates for domestic term deposits.
Super Senior Citizens: In some special schemes, the bank may offer additional benefits for super senior citizens (aged 80+), though this is subject to specific scheme notifications.
Tax Deducted at Source (TDS): Interest earned on FDs is subject to TDS if the total interest income exceeds ₹40,000 (₹50,000 for senior citizens) in a financial year. This calculator shows the gross maturity amount before tax.
Popular CBI Deposit Schemes
While using the calculator, you may want to verify rates for specific schemes:
Cent Uttam Scheme: A flexible scheme offering high liquidity.
Money Multiplier Deposit Certificate (MMDC): Interest is compounded quarterly and paid at maturity, ideal for long-term wealth creation.
Monthly Interest Deposit Receipt (MIDR): Suitable for pensioners requiring a monthly payout (Simple Interest calculation applies here).
Disclaimer: Interest rates are subject to change by the Central Bank of India without prior notice. Please verify the latest rates from the official branch or website before investing. This tool is for estimation purposes only.