{"id":1431,"date":"2024-01-08T07:58:34","date_gmt":"2024-01-08T07:58:34","guid":{"rendered":"https:\/\/financeresources.in\/?page_id=1431"},"modified":"2024-03-21T10:06:53","modified_gmt":"2024-03-21T10:06:53","slug":"apy-calculator","status":"publish","type":"page","link":"https:\/\/financeresources.in\/index.php\/apy-calculator\/","title":{"rendered":"APY Calculator"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"1431\" class=\"elementor elementor-1431\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b72fbe1 e-flex e-con-boxed e-con e-parent\" data-id=\"b72fbe1\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-db10845 e-con-full e-flex e-con e-child\" data-id=\"db10845\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ff6a252 elementor-widget elementor-widget-html\" data-id=\"ff6a252\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\r\n    <meta charset=\"UTF-8\">\r\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\r\n    <title>APY Calculator<\/title>\r\n<\/head>\r\n<body>\r\n\r\n<div id=\"apyCalculator\">\r\n    <h3>APY Calculator<\/h3>\r\n\r\n    <label for=\"joiningAge\" style=\"color: #06341a;\">Your joining age:<\/label>\r\n    <div class=\"slider-container\">\r\n        <input type=\"range\" id=\"joiningAge\" min=\"18\" max=\"60\" value=\"25\" oninput=\"updateSliderValue('joiningAge', 'joiningAgeValue')\" style=\"background-color: transparent; width: 100%; height: 2px; -webkit-appearance: none; outline: none; margin-bottom: 10px;\" \/>\r\n        <span id=\"joiningAgeValue\">25<\/span>\r\n    <\/div>\r\n\r\n    <label for=\"desiredPension\" style=\"color: #06341a;\">Desired monthly pension (\u20b9):<\/label>\r\n    <div class=\"slider-container\">\r\n        <input type=\"range\" id=\"desiredPension\" min=\"0\" max=\"5000\" step=\"100\" value=\"1000\" oninput=\"updateSliderValue('desiredPension', 'desiredPensionValue')\" style=\"background-color: transparent; width: 100%; height: 2px; -webkit-appearance: none; outline: none; margin-bottom: 10px;\" \/>\r\n        <span id=\"desiredPensionValue\">1000<\/span>\r\n    <\/div>\r\n\r\n    <button onclick=\"calculateAPY()\" style=\"background-color: #06341a; color: #ffffff;\">Calculate<\/button>\r\n\r\n    <div id=\"result\" style=\"color: #06341a;\">\r\n        <h4>Result<\/h4>\r\n        <h5>Monthly Investment: \u20b9 <span id=\"monthlyInvestment\"><\/span><\/h5>\r\n        <h5>Duration of Investment: <span id=\"duration\"><\/span> years<\/h5>\r\n        <h5>Total Investment Amount: \u20b9 <span id=\"totalInvestment\"><\/span><\/h5>\r\n    <\/div>\r\n<\/div>\r\n\r\n<script>\r\n    function updateSliderValue(sliderId, displayId) {\r\n        document.getElementById(displayId).innerText = document.getElementById(sliderId).value;\r\n    }\r\n\r\n    function calculateAPY() {\r\n        var joiningAge = parseInt(document.getElementById('joiningAge').value);\r\n        var desiredPension = parseInt(document.getElementById('desiredPension').value);\r\n        \r\n        \/\/ Assuming an annual interest rate of 8% and compounded annually\r\n        var interestRate = 0.08;\r\n        var compoundFrequency = 1;\r\n\r\n        var numberOfYears = 60 - joiningAge;\r\n        var monthlyInvestment = (desiredPension * 12) \/ (((1 + (interestRate \/ compoundFrequency)) ** (compoundFrequency * numberOfYears)) - 1);\r\n        var totalInvestment = monthlyInvestment * 12 * numberOfYears;\r\n\r\n        document.getElementById('monthlyInvestment').innerText = monthlyInvestment.toFixed(2);\r\n        document.getElementById('duration').innerText = numberOfYears;\r\n        document.getElementById('totalInvestment').innerText = totalInvestment.toFixed(2);\r\n    }\r\n<\/script>\r\n\r\n<style>\r\n    #apyCalculator {\r\n        width: 80%;\r\n        background-color: #ffffff;\r\n        padding: 20px;\r\n        box-sizing: border-box;\r\n        margin: auto;\r\n    }\r\n\r\n    label {\r\n        display: block;\r\n        margin-bottom: 10px;\r\n        font-weight: bold;\r\n    }\r\n\r\n    .slider-container {\r\n        position: relative;\r\n        width: 100%;\r\n    }\r\n\r\n    input[type=\"range\"]::-webkit-slider-thumb {\r\n        -webkit-appearance: none;\r\n        appearance: none;\r\n        width: 10px;\r\n        height: 10px;\r\n        background: linear-gradient(to right, #06341a, #45a049);\r\n        border-radius: 50%;\r\n        cursor: pointer;\r\n    }\r\n\r\n    input[type=\"range\"]::-webkit-slider-runnable-track {\r\n        background: #c5a65e; \/* Change bar color to #c5a65e *\/\r\n        height: 2px;\r\n        border-radius: 5px;\r\n    }\r\n\r\n    span {\r\n        display: inline-block;\r\n        margin-bottom: 10px;\r\n    }\r\n\r\n    button {\r\n        padding: 10px 15px;\r\n        border: none;\r\n        cursor: pointer;\r\n        border-radius: 5px;\r\n    }\r\n\r\n    button:hover {\r\n        background-color: #45a049;\r\n    }\r\n\r\n    #result {\r\n        margin-top: 20px;\r\n    }\r\n<\/style>\r\n\r\n<\/body>\r\n<\/html>\r\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1eab860 elementor-widget elementor-widget-heading\" data-id=\"1eab860\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.22.0 - 26-06-2024 *\/\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}<\/style><h3 class=\"elementor-heading-title elementor-size-large\">APY Calculator<\/h3>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-12b8b9d elementor-widget elementor-widget-text-editor\" data-id=\"12b8b9d\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.22.0 - 26-06-2024 *\/\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}<\/style>\t\t\t\t<p>The Atal Pension Yojana is a pension scheme that was introduced in the Union Budget of 2015 \u2013 2016, and it targeted individuals who were employed in the unorganized sector. It is a scheme that is also open to the private sector and does not have a pension benefit.<\/p><p>At 60, an individual employee can choose to obtain a pension of either Rs.1,000, 2,000, 4,000, or 5,000. This pension depends on their contribution to the scheme and the age at which they start the subscription to the scheme. This pension can further be claimed by the spouse upon the demise of the account holder. The collected funds of the Atal scheme are managed by the Pension Funds Regulatory Authority of India.<\/p><p><!-- notionvc: 39a56f58-4e51-4f0b-95de-af33a798c45a --><\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f32870a elementor-widget elementor-widget-heading\" data-id=\"f32870a\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h3 class=\"elementor-heading-title elementor-size-large\">What is a SIP Calculator?<\/h3>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0e4ca02 elementor-widget elementor-widget-text-editor\" data-id=\"0e4ca02\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>The SIP calculator is a user-friendly tool that provides individuals with an estimate of the returns on their mutual fund investments made through SIP. As SIP investments gain popularity, especially among millennials, this calculator becomes an invaluable resource. It offers a rough estimate of the maturity amount for your monthly SIP, based on a projected annual return rate.<\/p><p>It&#8217;s important to note that the actual returns from a mutual fund scheme can vary due to factors like exit loads and expense ratios, which are not accounted for in the SIP calculator.<\/p><p><!-- notionvc: 39a56f58-4e51-4f0b-95de-af33a798c45a --><\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bd46e5e elementor-widget elementor-widget-heading\" data-id=\"bd46e5e\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h3 class=\"elementor-heading-title elementor-size-large\">What is APY Calculator, and How Does it Help You?<\/h3>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5b0c19d elementor-widget elementor-widget-text-editor\" data-id=\"5b0c19d\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>The APY Calculator is a tool that allows you to determine the real interest received on investment in the pension scheme. The Atal Pension Yojana Calculator may be used to determine what is the amount of pension you want to receive, and the age at which you should apply for this scheme. Also, for your convenience, the calculator gives you an instant answer on how much interest you would have earned on the pension. The APY calculator can also help you avoid mistakes. As a result, this software is beneficial to employees in the public and private sector.<\/p><p><!-- notionvc: ade2802c-4abf-462e-84f1-d0a55e1fba81 --><\/p><p><!-- notionvc: 28e4c2ae-3968-4183-aae3-d1d577a38e85 --><\/p><p><!-- notionvc: 39a56f58-4e51-4f0b-95de-af33a798c45a --><\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4701f59 elementor-widget elementor-widget-heading\" data-id=\"4701f59\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h3 class=\"elementor-heading-title elementor-size-large\">The APY Calculator can help you in the following ways:<\/h3>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-de81adf elementor-widget elementor-widget-text-editor\" data-id=\"de81adf\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<ul><li>The final outcome estimation instantly.<\/li><li>The right period of investment.<\/li><li>For you to understand if the pension scheme aligns with your financial goals.<\/li><\/ul><p><!-- notionvc: aa0c03eb-7651-4451-b17f-4b5bc776fcdd --><\/p><p><!-- notionvc: 6ebc00d8-4f72-486b-bf4d-9d7aa3d3d831 --><\/p><p><!-- notionvc: 28e4c2ae-3968-4183-aae3-d1d577a38e85 --><\/p><p><!-- notionvc: 39a56f58-4e51-4f0b-95de-af33a798c45a --><\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a758229 elementor-widget elementor-widget-heading\" data-id=\"a758229\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h3 class=\"elementor-heading-title elementor-size-large\">How to Use Atal Pension Yojana Calculator<\/h3>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fe8c8fb elementor-widget elementor-widget-text-editor\" data-id=\"fe8c8fb\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>This pension calculator depicts the approximate Pension and Lump Sum amount that an NPS subscriber may expect at maturity or at the age of 60 based on regular monthly contributions, a percentage of corpus reinvested for purchasing annuities, and assumed rates for returns on investment and annuity chosen.<\/p><p>In order to use the calculator, you need to follow the steps mentioned below:<\/p><p><strong>Step 1:<\/strong> Choose your age on the calculator.<\/p><p><strong>Step 2:<\/strong> Choose the amount you would require as a pensioner.<\/p><p>After choosing all of these necessary criteria, the calculator will instantly show you the calculated result of the monthly investment, duration of the investment and total investment amount.<\/p><p><!-- notionvc: 6ebc00d8-4f72-486b-bf4d-9d7aa3d3d831 --><\/p><p><!-- notionvc: 28e4c2ae-3968-4183-aae3-d1d577a38e85 --><\/p><p><!-- notionvc: 39a56f58-4e51-4f0b-95de-af33a798c45a --><\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-430302b elementor-widget elementor-widget-heading\" data-id=\"430302b\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h3 class=\"elementor-heading-title elementor-size-large\">Advantages of Using the Calculator Atal Pension Yojana<\/h3>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-eb830a1 elementor-widget elementor-widget-text-editor\" data-id=\"eb830a1\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>The Atal Pension Yojana (APY) was developed with the intention of focusing on all citizens of India, particularly those in the unorganized sector who do not have any official pension coverage. This plan encourages these employees to save for their retirement. Here are some of the advantages of using the APY Calculator:<\/p><ul><li>It provides you help in determining how the outcome may be effective to you and your financial goal.<\/li><li>It is an instant source to know the outcome of your investment.<\/li><li>You can customize data based on your preferences.<\/li><li>You can find estimates instantly without needing to seek assistance.<\/li><\/ul><p><!-- notionvc: 5f47cdac-bc57-452d-af5c-2729fe0202af --><\/p><p><!-- notionvc: 41ba685c-08de-4da4-beff-5cbbf1aa2568 --><\/p><p><!-- notionvc: 6ebc00d8-4f72-486b-bf4d-9d7aa3d3d831 --><\/p><p><!-- notionvc: 28e4c2ae-3968-4183-aae3-d1d577a38e85 --><\/p><p><!-- notionvc: 39a56f58-4e51-4f0b-95de-af33a798c45a --><\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-47c3c62 elementor-widget elementor-widget-heading\" data-id=\"47c3c62\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h3 class=\"elementor-heading-title elementor-size-large\">FAQs<\/h3>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e830b8d elementor-widget elementor-widget-accordion\" data-id=\"e830b8d\" data-element_type=\"widget\" data-widget_type=\"accordion.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor - v3.22.0 - 26-06-2024 *\/\n.elementor-accordion{text-align:start}.elementor-accordion .elementor-accordion-item{border:1px solid #d5d8dc}.elementor-accordion .elementor-accordion-item+.elementor-accordion-item{border-top:none}.elementor-accordion .elementor-tab-title{margin:0;padding:15px 20px;font-weight:700;line-height:1;cursor:pointer;outline:none}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{display:inline-block;width:1.5em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon svg{width:1em;height:1em}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-right{float:right;text-align:right}.elementor-accordion .elementor-tab-title .elementor-accordion-icon.elementor-accordion-icon-left{float:left;text-align:left}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-closed{display:block}.elementor-accordion .elementor-tab-title .elementor-accordion-icon .elementor-accordion-icon-opened,.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-closed{display:none}.elementor-accordion .elementor-tab-title.elementor-active .elementor-accordion-icon-opened{display:block}.elementor-accordion .elementor-tab-content{display:none;padding:15px 20px;border-top:1px solid #d5d8dc}@media (max-width:767px){.elementor-accordion .elementor-tab-title{padding:12px 15px}.elementor-accordion .elementor-tab-title .elementor-accordion-icon{width:1.2em}.elementor-accordion .elementor-tab-content{padding:7px 15px}}.e-con-inner>.elementor-widget-accordion,.e-con>.elementor-widget-accordion{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}<\/style>\t\t<div class=\"elementor-accordion\">\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-2431\" class=\"elementor-tab-title\" data-tab=\"1\" role=\"button\" aria-controls=\"elementor-tab-content-2431\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><svg class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">Will I have to pay any fees to use the calculator?<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-2431\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"1\" role=\"region\" aria-labelledby=\"elementor-tab-title-2431\"><p>Typically, online calculators provided by banks, financial institutions, or government websites are free to use. They offer tools such as EMI calculators, interest calculators, or retirement calculators without charging any fees. However, it&#8217;s essential to check the specific terms and conditions of the website or calculator you are using to confirm whether there are any fees associated with it.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-2432\" class=\"elementor-tab-title\" data-tab=\"2\" role=\"button\" aria-controls=\"elementor-tab-content-2432\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><svg class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">How can I set up an APY account?<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-2432\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"2\" role=\"region\" aria-labelledby=\"elementor-tab-title-2432\"><p>To set up an Atal Pension Yojana (APY) account, you can visit a participating bank branch or open an account online through the bank&#8217;s website. You will need to provide necessary documents such as Aadhaar card, PAN card, and a savings bank account. The bank will assist you in completing the account opening process and enrolling you in the APY scheme.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-2433\" class=\"elementor-tab-title\" data-tab=\"3\" role=\"button\" aria-controls=\"elementor-tab-content-2433\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><svg class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">What happens if I don\u2019t keep the minimum amount in my bank account?<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-2433\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"3\" role=\"region\" aria-labelledby=\"elementor-tab-title-2433\"><p>If you fail to maintain the minimum balance required in your bank account, you may be subject to penalties or charges imposed by the bank. These charges vary depending on the bank and the type of account. Additionally, the bank may downgrade your account or restrict certain services until you restore the minimum balance requirement.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<div class=\"elementor-accordion-item\">\n\t\t\t\t\t<div id=\"elementor-tab-title-2434\" class=\"elementor-tab-title\" data-tab=\"4\" role=\"button\" aria-controls=\"elementor-tab-content-2434\" aria-expanded=\"false\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon elementor-accordion-icon-left\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-closed\"><svg class=\"e-font-icon-svg e-fas-plus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t<span class=\"elementor-accordion-icon-opened\"><svg class=\"e-font-icon-svg e-fas-minus\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z\"><\/path><\/svg><\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-accordion-title\" tabindex=\"0\">I am a participant in the National Pension Scheme (NPS). Is it possible for me to open an APY account?<\/a>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div id=\"elementor-tab-content-2434\" class=\"elementor-tab-content elementor-clearfix\" data-tab=\"4\" role=\"region\" aria-labelledby=\"elementor-tab-title-2434\"><p>Yes, it is possible for individuals who are participants in the National Pension Scheme (NPS) to open an Atal Pension Yojana (APY) account. APY is a voluntary pension scheme aimed at providing a pension to unorganized sector workers. However, participants in NPS can also enroll in APY if they meet the eligibility criteria and wish to avail of the benefits offered by the scheme.<\/p><\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-756d103 e-con-full e-flex e-con e-child\" data-id=\"756d103\" data-element_type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-622c1e0 e-con-full e-flex e-con e-child\" data-id=\"622c1e0\" data-element_type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-db6fe97 elementor-widget elementor-widget-template\" data-id=\"db6fe97\" data-element_type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"section\" data-elementor-id=\"3770\" class=\"elementor elementor-3770\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t\t<div class=\"elementor-section-wrap\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-c3c5fa9 e-con-full e-flex e-con e-parent\" data-id=\"c3c5fa9\" data-element_type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2e22862 elementor-widget elementor-widget-heading\" data-id=\"2e22862\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Financial Calculators:<\/h4>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f64b1f7 elementor-nav-menu--dropdown-tablet elementor-nav-menu__text-align-aside elementor-nav-menu--toggle elementor-nav-menu--burger elementor-widget elementor-widget-nav-menu\" data-id=\"f64b1f7\" data-element_type=\"widget\" data-settings=\"{&quot;layout&quot;:&quot;vertical&quot;,&quot;submenu_icon&quot;:{&quot;value&quot;:&quot;&lt;svg class=\\&quot;e-font-icon-svg e-fas-caret-down\\&quot; viewBox=\\&quot;0 0 320 512\\&quot; xmlns=\\&quot;http:\\\/\\\/www.w3.org\\\/2000\\\/svg\\&quot;&gt;&lt;path d=\\&quot;M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z\\&quot;&gt;&lt;\\\/path&gt;&lt;\\\/svg&gt;&quot;,&quot;library&quot;:&quot;fa-solid&quot;},&quot;toggle&quot;:&quot;burger&quot;}\" data-widget_type=\"nav-menu.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<link rel=\"stylesheet\" href=\"https:\/\/financeresources.in\/wp-content\/plugins\/elementor-pro\/assets\/css\/widget-nav-menu.min.css\">\t\t\t<nav class=\"elementor-nav-menu--main elementor-nav-menu__container elementor-nav-menu--layout-vertical e--pointer-background e--animation-fade\">\n\t\t\t\t<ul id=\"menu-1-f64b1f7\" class=\"elementor-nav-menu sm-vertical\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4365\"><a href=\"https:\/\/financeresources.in\/index.php\/apy-calculator\/\" class=\"elementor-item menu-link\">APY Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4366\"><a href=\"https:\/\/financeresources.in\/index.php\/cagr-calculator\/\" class=\"elementor-item menu-link\">CAGR Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4367\"><a href=\"https:\/\/financeresources.in\/index.php\/car-loan-emi-calculator\/\" class=\"elementor-item menu-link\">Car Loan EMI Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4368\"><a href=\"https:\/\/financeresources.in\/index.php\/compound-interest-calculator\/\" class=\"elementor-item menu-link\">Compound Interest Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4369\"><a href=\"https:\/\/financeresources.in\/index.php\/emi-calculator\/\" class=\"elementor-item menu-link\">EMI Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4370\"><a href=\"https:\/\/financeresources.in\/index.php\/epf-calculator\/\" class=\"elementor-item menu-link\">EPF Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4371\"><a href=\"https:\/\/financeresources.in\/index.php\/equity-margin-calculator\/\" class=\"elementor-item menu-link\">Equity Margin Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4372\"><a href=\"https:\/\/financeresources.in\/index.php\/fd-calculator\/\" class=\"elementor-item menu-link\">FD Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4373\"><a href=\"https:\/\/financeresources.in\/index.php\/flat-vs-reducing-rate-calculator\/\" class=\"elementor-item menu-link\">Flat vs Reducing Rate Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4374\"><a href=\"https:\/\/financeresources.in\/index.php\/gratuity-calculator\/\" class=\"elementor-item menu-link\">Gratuity Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4375\"><a href=\"https:\/\/financeresources.in\/index.php\/gst-calculator\/\" class=\"elementor-item menu-link\">GST Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4376\"><a href=\"https:\/\/financeresources.in\/index.php\/home-loan-emi-calculator\/\" class=\"elementor-item menu-link\">Home Loan EMI Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4377\"><a href=\"https:\/\/financeresources.in\/index.php\/hra-calculator\/\" class=\"elementor-item menu-link\">HRA Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4378\"><a href=\"https:\/\/financeresources.in\/index.php\/income-tax-calculator\/\" class=\"elementor-item menu-link\">Income Tax Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4379\"><a href=\"https:\/\/financeresources.in\/index.php\/inflation-calculator\/\" class=\"elementor-item menu-link\">Inflation Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4380\"><a href=\"https:\/\/financeresources.in\/index.php\/lumpsum-calculator\/\" class=\"elementor-item menu-link\">Lumpsum Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4381\"><a href=\"https:\/\/financeresources.in\/index.php\/mutual-fund-returns-calculator\/\" class=\"elementor-item menu-link\">Mutual Fund Returns Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4382\"><a href=\"https:\/\/financeresources.in\/index.php\/nps-calculator\/\" class=\"elementor-item menu-link\">NPS Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4383\"><a href=\"https:\/\/financeresources.in\/index.php\/nsc-calculator\/\" class=\"elementor-item menu-link\">NSC Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4384\"><a href=\"https:\/\/financeresources.in\/index.php\/ppf-calculator\/\" class=\"elementor-item menu-link\">PPF Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4385\"><a href=\"https:\/\/financeresources.in\/index.php\/rd-calculator\/\" class=\"elementor-item menu-link\">RD Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4386\"><a href=\"https:\/\/financeresources.in\/index.php\/retirement-calculator\/\" class=\"elementor-item menu-link\">Retirement Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4387\"><a href=\"https:\/\/financeresources.in\/index.php\/salary-calculator\/\" class=\"elementor-item menu-link\">Salary Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4388\"><a href=\"https:\/\/financeresources.in\/index.php\/simple-interest-calculator\/\" class=\"elementor-item menu-link\">Simple Interest Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4389\"><a href=\"https:\/\/financeresources.in\/index.php\/sip-calculator\/\" class=\"elementor-item menu-link\">SIP Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4390\"><a href=\"https:\/\/financeresources.in\/index.php\/step-up-sip-calculator\/\" class=\"elementor-item menu-link\">Step Up SIP Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4391\"><a href=\"https:\/\/financeresources.in\/index.php\/sukanya-samriddhi-yojana-calculator\/\" class=\"elementor-item menu-link\">Sukanya Samriddhi Yojana Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4392\"><a href=\"https:\/\/financeresources.in\/index.php\/swp-systematic-withdrawal-plan-calculator\/\" class=\"elementor-item menu-link\">SWP (Systematic Withdrawal Plan) Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4393\"><a href=\"https:\/\/financeresources.in\/index.php\/tds-calculator\/\" class=\"elementor-item menu-link\">TDS Calculator<\/a><\/li>\n<\/ul>\t\t\t<\/nav>\n\t\t\t\t\t<div class=\"elementor-menu-toggle\" role=\"button\" tabindex=\"0\" aria-label=\"Menu Toggle\" aria-expanded=\"false\">\n\t\t\t<svg aria-hidden=\"true\" role=\"presentation\" class=\"elementor-menu-toggle__icon--open e-font-icon-svg e-eicon-menu-bar\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M104 333H896C929 333 958 304 958 271S929 208 896 208H104C71 208 42 237 42 271S71 333 104 333ZM104 583H896C929 583 958 554 958 521S929 458 896 458H104C71 458 42 487 42 521S71 583 104 583ZM104 833H896C929 833 958 804 958 771S929 708 896 708H104C71 708 42 737 42 771S71 833 104 833Z\"><\/path><\/svg><svg aria-hidden=\"true\" role=\"presentation\" class=\"elementor-menu-toggle__icon--close e-font-icon-svg e-eicon-close\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M742 167L500 408 258 167C246 154 233 150 217 150 196 150 179 158 167 167 154 179 150 196 150 212 150 229 154 242 171 254L408 500 167 742C138 771 138 800 167 829 196 858 225 858 254 829L496 587 738 829C750 842 767 846 783 846 800 846 817 842 829 829 842 817 846 804 846 783 846 767 842 750 829 737L588 500 833 258C863 229 863 200 833 171 804 137 775 137 742 167Z\"><\/path><\/svg>\t\t\t<span class=\"elementor-screen-only\">Menu<\/span>\n\t\t<\/div>\n\t\t\t\t\t<nav class=\"elementor-nav-menu--dropdown elementor-nav-menu__container\" aria-hidden=\"true\">\n\t\t\t\t<ul id=\"menu-2-f64b1f7\" class=\"elementor-nav-menu sm-vertical\"><li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4365\"><a href=\"https:\/\/financeresources.in\/index.php\/apy-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">APY Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4366\"><a href=\"https:\/\/financeresources.in\/index.php\/cagr-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">CAGR Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4367\"><a href=\"https:\/\/financeresources.in\/index.php\/car-loan-emi-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Car Loan EMI Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4368\"><a href=\"https:\/\/financeresources.in\/index.php\/compound-interest-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Compound Interest Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4369\"><a href=\"https:\/\/financeresources.in\/index.php\/emi-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">EMI Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4370\"><a href=\"https:\/\/financeresources.in\/index.php\/epf-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">EPF Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4371\"><a href=\"https:\/\/financeresources.in\/index.php\/equity-margin-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Equity Margin Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4372\"><a href=\"https:\/\/financeresources.in\/index.php\/fd-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">FD Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4373\"><a href=\"https:\/\/financeresources.in\/index.php\/flat-vs-reducing-rate-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Flat vs Reducing Rate Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4374\"><a href=\"https:\/\/financeresources.in\/index.php\/gratuity-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Gratuity Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4375\"><a href=\"https:\/\/financeresources.in\/index.php\/gst-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">GST Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4376\"><a href=\"https:\/\/financeresources.in\/index.php\/home-loan-emi-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Home Loan EMI Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4377\"><a href=\"https:\/\/financeresources.in\/index.php\/hra-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">HRA Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4378\"><a href=\"https:\/\/financeresources.in\/index.php\/income-tax-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Income Tax Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4379\"><a href=\"https:\/\/financeresources.in\/index.php\/inflation-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Inflation Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4380\"><a href=\"https:\/\/financeresources.in\/index.php\/lumpsum-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Lumpsum Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4381\"><a href=\"https:\/\/financeresources.in\/index.php\/mutual-fund-returns-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Mutual Fund Returns Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4382\"><a href=\"https:\/\/financeresources.in\/index.php\/nps-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">NPS Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4383\"><a href=\"https:\/\/financeresources.in\/index.php\/nsc-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">NSC Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4384\"><a href=\"https:\/\/financeresources.in\/index.php\/ppf-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">PPF Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4385\"><a href=\"https:\/\/financeresources.in\/index.php\/rd-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">RD Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4386\"><a href=\"https:\/\/financeresources.in\/index.php\/retirement-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Retirement Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4387\"><a href=\"https:\/\/financeresources.in\/index.php\/salary-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Salary Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4388\"><a href=\"https:\/\/financeresources.in\/index.php\/simple-interest-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Simple Interest Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4389\"><a href=\"https:\/\/financeresources.in\/index.php\/sip-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">SIP Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4390\"><a href=\"https:\/\/financeresources.in\/index.php\/step-up-sip-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Step Up SIP Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4391\"><a href=\"https:\/\/financeresources.in\/index.php\/sukanya-samriddhi-yojana-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">Sukanya Samriddhi Yojana Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4392\"><a href=\"https:\/\/financeresources.in\/index.php\/swp-systematic-withdrawal-plan-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">SWP (Systematic Withdrawal Plan) Calculator<\/a><\/li>\n<li class=\"menu-item menu-item-type-post_type menu-item-object-page menu-item-4393\"><a href=\"https:\/\/financeresources.in\/index.php\/tds-calculator\/\" class=\"elementor-item menu-link\" tabindex=\"-1\">TDS Calculator<\/a><\/li>\n<\/ul>\t\t\t<\/nav>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c81ba4e e-con-full e-flex e-con e-child\" data-id=\"c81ba4e\" data-element_type=\"container\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>APY Calculator APY Calculator Your joining age: 25 Desired monthly pension (\u20b9): 1000 Calculate Result Monthly Investment: \u20b9 Duration of Investment: years Total Investment Amount: \u20b9 APY Calculator The Atal Pension Yojana is a pension scheme that was introduced in the Union Budget of 2015 \u2013 2016, and it targeted individuals who were employed in [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"no-sidebar","site-content-layout":"page-builder","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""}},"footnotes":""},"acf":[],"jetpack_sharing_enabled":true,"rttpg_featured_image_url":null,"rttpg_author":{"display_name":"Finance Resources","author_link":"https:\/\/financeresources.in\/index.php\/author\/rajp0876\/"},"rttpg_comment":0,"rttpg_category":false,"rttpg_excerpt":"APY Calculator APY Calculator Your joining age: 25 Desired monthly pension (\u20b9): 1000 Calculate Result Monthly Investment: \u20b9 Duration of Investment: years Total Investment Amount: \u20b9 APY Calculator The Atal Pension Yojana is a pension scheme that was introduced in the Union Budget of 2015 \u2013 2016, and it targeted individuals who were employed in&hellip;","_links":{"self":[{"href":"https:\/\/financeresources.in\/index.php\/wp-json\/wp\/v2\/pages\/1431"}],"collection":[{"href":"https:\/\/financeresources.in\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/financeresources.in\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/financeresources.in\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/financeresources.in\/index.php\/wp-json\/wp\/v2\/comments?post=1431"}],"version-history":[{"count":28,"href":"https:\/\/financeresources.in\/index.php\/wp-json\/wp\/v2\/pages\/1431\/revisions"}],"predecessor-version":[{"id":4515,"href":"https:\/\/financeresources.in\/index.php\/wp-json\/wp\/v2\/pages\/1431\/revisions\/4515"}],"wp:attachment":[{"href":"https:\/\/financeresources.in\/index.php\/wp-json\/wp\/v2\/media?parent=1431"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}