-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmahila-samman-savings-certificate-mssc-calculator.html
More file actions
1317 lines (1284 loc) · 78 KB
/
mahila-samman-savings-certificate-mssc-calculator.html
File metadata and controls
1317 lines (1284 loc) · 78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YHX88MXWW4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-YHX88MXWW4');
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1195438021979002"
crossorigin="anonymous"></script>
<script async src="https://fundingchoicesmessages.google.com/i/pub-1195438021979002?ers=1"
nonce="BjSR2tWXwNhufsw9vylkYQ"></script>
<script
nonce="BjSR2tWXwNhufsw9vylkYQ">(function () { function signalGooglefcPresent() { if (!window.frames['googlefcPresent']) { if (document.body) { const iframe = document.createElement('iframe'); iframe.style = 'width: 0; height: 0; border: none; z-index: -1000; left: -1000px; top: -1000px;'; iframe.style.display = 'none'; iframe.name = 'googlefcPresent'; document.body.appendChild(iframe); } else { setTimeout(signalGooglefcPresent, 0); } } } signalGooglefcPresent(); })();</script>
<!-- JSON-LD markup generated by Google Structured Data Markup Helper. -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Article",
"headline": "MSSC: Mahila Samman Savings Certificate Calculator online",
"url": "https://nivesguru.in/mahila-samman-savings-certificate-mssc-calculator",
"image": [
"https://nivesguru.in/mahila-samman-savings-certificate-mssc-calculator.svg",
"https://nivesguru.in/mahila-samman-savings-certificate-calculator.svg"
],
"datePublished": "2023-09-12T10:00:00+05:30",
"dateModified": "2024-04-02T14:20:00+05:30",
"author": {
"@type": "Person",
"name": "Anupam Mondal",
"url": "https://anupammondal.in"
},
"publisher": {
"@type": "Organization",
"name": "Nivesguru"
}
}
</script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://nivesguru.in"
},{
"@type": "ListItem",
"position": 2,
"name": "MSSC: Mahila Samman Savings Certificate Calculator online",
"item": "https://nivesguru.in/mahila-samman-savings-certificate-mssc-calculator"
}]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [{
"@type": "Question",
"name": "What is the interest rate offered on Mahila Samman Savings Certificate Account (MSSC)?",
"acceptedAnswer": {
"@type": "Answer",
"text": "An interest rate of 7.5% p.a. is applicable on Post Office Mahila Samman Savings Certificate (MSSC) currently."
}
},{
"@type": "Question",
"name": "Can a non-resident Indian (NRI) invest in the Mahila Samman Savings Certificate?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No, any NRI are not eligible for Mahila Samman Savings Certificate investment and this scheme only available for Indian citizens / women / girls resides in India"
}
}, {
"@type": "Question",
"name": "Can I avail a loan against the Mahila Samman Savings Certificate?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, you can avail a loan against the certificate after the completion of one year from the date of purchase."
}
}, {
"@type": "Question",
"name": "Is partial withdrawal possible in case of emergencies?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, partial withdrawal is possible after one year up to 40% of the existing Account balance."
}
}, {
"@type": "Question",
"name": "Is there any lock-in period for this scheme?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, the Mahila Samman Savings Certificate has a lock-in period of 2 years from the date of purchase."
}
}, {
"@type": "Question",
"name": "Is there any last date for MSSC?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, the last date of opening a Mahila Samman Savings Certifacate is 31st Mar, 2025. MSSC investment started in 2023 and can able to utilise the benifit to get good return of interest on your savings upto Mar, 2025."
}
}]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "MSSC: Mahila Samman Savings Certificate Calculator online",
"url": "https://nivesguru.in/mahila-samman-savings-certificate-mssc-calculator",
"logo": "https://nivesguru.in/maskable_icon_x192.png",
"contactPoint": [{
"@type": "ContactPoint",
"telephone": "+91-938-239-9893",
"contactType": "customer service",
"areaServed": "IN"
}],
"image": [
"https://nivesguru.in/mahila-samman-savings-certificate-mssc-calculator.svg",
"https://nivesguru.in/mahila-samman-savings-certificate-calculator.svg"
],
"sameAs": [
"https://nivesguru.in",
"https://www.facebook.com/nivesguru",
"https://instagram.com/niveshguru_official",
"https://www.youtube.com/@nivesguru-india",
"https://twitter.com/Nivesguru",
"https://www.linkedin.com/company/nivesguru"
]
}
</script>
<!-- JSON-LD markup -->
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="57x57" href="apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="manifest" href="manifest.json">
<link rel="canonical" href="https://nivesguru.in/mahila-samman-savings-certificate-mssc-calculator">
<!-- Favicon -->
<link rel="alternate" href="https://nivesguru.in/mahila-samman-savings-certificate-mssc-calculator" hreflang="en" />
<link rel="alternate" href="https://nivesguru.in/bn/mahila-samman-savings-certificate-mssc-calculator"
hreflang="bn" />
<link rel="alternate" href="https://nivesguru.in/hi/mahila-samman-savings-certificate-mssc-calculator"
hreflang="hi" />
<link rel="alternate" href="https://nivesguru.in/mahila-samman-savings-certificate-mssc-calculator"
hreflang="x-default" />
<!-- Primary Meta Tags -->
<title>MSSC: Mahila Samman Savings Certificate Calculator online</title>
<meta name="title" content="MSSC: Mahila Samman Savings Certificate Calculator online">
<meta name="description"
content="Post Office Mahila Samman Savings Certificate (MSSC) investment for women. Also known as Mahila Samman Bachat Patra Yojana, returns 7.5% interest on upto 2 lakh">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://nivesguru.in/mahila-samman-savings-certificate-mssc-calculator">
<meta property="og:title" content="MSSC: Mahila Samman Savings Certificate Calculator online">
<meta property="og:description"
content="Post Office Mahila Samman Savings Certificate (MSSC) investment for women. Also known as Mahila Samman Bachat Patra Yojana, returns 7.5% interest on upto 2 lakh">
<meta property="og:image" content="https://nivesguru.in/res/meta/mahila-samman-savings-certificate-calculator.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@Nivesguru">
<meta property="twitter:url" content="https://nivesguru.in/mahila-samman-savings-certificate-mssc-calculator">
<meta property="twitter:title" content="MSSC: Mahila Samman Savings Certificate Calculator online">
<meta property="twitter:description"
content="Post Office Mahila Samman Savings Certificate (MSSC) investment for women. Also known as Mahila Samman Bachat Patra Yojana, returns 7.5% interest on upto 2 lakh">
<meta property="twitter:image"
content="https://nivesguru.in/res/meta/mahila-samman-savings-certificate-calculator.png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<style>
nav.navbar {
background-color: #00000077;
}
a.navbar-brand img {
margin-top: -5px;
}
.attention {
/* color: #008000; */
animation: animate 1.2s linear infinite;
}
@keyframes animate {
0% {
opacity: 0;
}
20% {
opacity: 1;
}
80% {
opacity: 1;
}
100% {
opacity: 0;
}
}
header {
background: linear-gradient(125deg, #ECFCFF 0%, #ECFCFF 40%, #B2FCFF calc(40% + 1px), #B2FCFF 60%, #5EDFFF calc(60% + 1px), #5EDFFF 72%, #3E64FF calc(72% + 1px), #3E64FF 100%);
}
.bg-duo {
background: rgb(255, 255, 255);
background: linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(0, 0, 0, 0) 50%);
}
.wave1 {
background-size: cover;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0 224L24 234.7C48 245 96 267 144 256C192 245 240 203 288 165.3C336 128 384 96 432 90.7C480 85 528 107 576 128C624 149 672 171 720 186.7C768 203 816 213 864 234.7C912 256 960 288 1008 266.7C1056 245 1104 171 1152 165.3C1200 160 1248 224 1296 224C1344 224 1392 160 1416 128L1440 96L1440 320L1416 320C1392 320 1344 320 1296 320C1248 320 1200 320 1152 320C1104 320 1056 320 1008 320C960 320 912 320 864 320C816 320 768 320 720 320C672 320 624 320 576 320C528 320 480 320 432 320C384 320 336 320 288 320C240 320 192 320 144 320C96 320 48 320 24 320L0 320Z'%3E%3C/path%3E%3C/svg%3E");
background-position: bottom center;
background-repeat: no-repeat;
}
.right-dark-strip-bg {
background: rgb(255, 255, 255);
background: linear-gradient(225deg, rgba(255, 255, 255, 1) 80%, rgba(0, 17, 105, 1) 80%, rgba(0, 17, 105, 1) 100%);
}
a {
text-decoration: none;
}
h2,
ul li a {
color: rgba(0, 17, 105, 1);
}
ul li {
list-style: none;
}
.modal-content {
background: linear-gradient(125deg, #ffc107 0%, #ffc107 30%, #FFFFFF calc(30% + 1px), #FFFFFF 60%, #FFFFFF calc(60% + 1px), #FFFFFF 72%, #FFFFFF calc(72% + 1px), #FFFFFF 100%);
}
a small,
a svg {
display: block;
margin: 0 auto;
text-align: center;
}
a small {
font-size: .6rem;
}
a.nav-link {
transition: none;
}
#myChart {
display: block;
margin: auto;
width: 100%;
max-width: 340px
}
</style>
<style>
/* Tricolor header background with Ashoka Chakra overlay */
header {
background: linear-gradient(165deg,
#FF9933 0%,
#FF9933 25%,
#fff 25%,
#fff 65%,
#138808 65%,
#138808 100%);
background-attachment: fixed;
background-size: cover;
position: relative;
}
header::before {
content: "";
position: absolute;
top: 25%;
right: 5%;
width: 150px;
height: 150px;
background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Ashoka_Chakra.svg/330px-Ashoka_Chakra.svg.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
transform: translate(-50%, -50%);
opacity: 0.4;
pointer-events: none;
z-index: 0;
}
/* Section background wave */
.wave1 {
background: linear-gradient(180deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0) 75%,
#fff 75%,
#fff 100%);
}
</style>
</head>
<body onload="msscCalculator()">
<header>
<div class="wave1">
<nav class="navbar navbar-expand-lg">
<div class="container">
<a class="navbar-brand text-white fw-bold" href="./" title="Nivesguru">
<img src="favicon-32x32.png" width="32" height="32"
class="d-inline-block align-text-top rounded-circle" alt="Nivesguru Logo"
title="Nivesguru Logo">
<p class="d-inline-block h4">Nivesguru</p>
</a>
<button class="navbar-toggler shadow-none border-0" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="text-white">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor"
class="bi bi-grid-fill" viewBox="0 0 16 16">
<path
d="M1 2.5A1.5 1.5 0 0 1 2.5 1h3A1.5 1.5 0 0 1 7 2.5v3A1.5 1.5 0 0 1 5.5 7h-3A1.5 1.5 0 0 1 1 5.5v-3zm8 0A1.5 1.5 0 0 1 10.5 1h3A1.5 1.5 0 0 1 15 2.5v3A1.5 1.5 0 0 1 13.5 7h-3A1.5 1.5 0 0 1 9 5.5v-3zm-8 8A1.5 1.5 0 0 1 2.5 9h3A1.5 1.5 0 0 1 7 10.5v3A1.5 1.5 0 0 1 5.5 15h-3A1.5 1.5 0 0 1 1 13.5v-3zm8 0A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 13.5v-3z" />
</svg>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto fw-bold mb-2 mb-lg-0">
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Investment Calculators
</a>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item"
href="senior-citizens-savings-scheme-scss-calculator">SCSS Calculator</a>
</li>
<li><a class="dropdown-item"
href="post-office-monthly-income-scheme-mis-calculator">MIS Calculator</a>
</li>
<li><a class="dropdown-item"
href="mahila-samman-savings-certificate-mssc-calculator">MSSC Calculator</a>
</li>
<li><a class="dropdown-item" href="post-office-time-deposit-td-calculator">TD
Calculator</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="sgb-calculator">SGB Calculator</a></li>
<li><a class="dropdown-item" href="kvp-calculator">KVP
Calculator</a></li>
<li><a class="dropdown-item" href="national-savings-certificate-nsc-calculator">NSC
Calculator</a></li>
<li><a class="dropdown-item" href="sukanya-samriddhi-yojana-ssy-calculator">SSY
Calculator</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="apy-calculator">APY
Calculator</a></li>
<li><a class="dropdown-item" href="national-pension-system-nps-calculator">NPS
Calculator</a></li>
<li><a class="dropdown-item" href="ppf-calculator">PPF
Calculator</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item"
href="pradhan-mantri-jeevan-jyoti-bima-yojana-pmjjby-calculator">PMJJBY
Calculator</a></li>
<li><a class="dropdown-item"
href="pradhan-mantri-suraksha-bima-yojana-pmsby-calculator">PMSBY
Calculator</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Finance Calculators
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="income-tax-calculator">Income Tax Calculator</a>
</li>
<li><a class="dropdown-item" href="gst-calculator">GST Calculator</a></li>
<li><a class="dropdown-item" href="simple-interest-calculator">Simple Interest
Calculator</a></li>
<li><a class="dropdown-item" href="service-tax-calculator">Service Tax
Calculator</a>
</li>
<li><a class="dropdown-item" href="capital-gain-tax-calculator">Capital Gain Tax
Calculator</a></li>
<li><a class="dropdown-item" href="tds-calculator">TDS Calculator</a></li>
<li><a class="dropdown-item" href="vat-calculator">VAT Calculator</a></li>
<li><a class="dropdown-item"
href="systematic-investment-plan-sip-return-calculator">SIP
Calculator</a></li>
<li><a class="dropdown-item" href="inflation-calculator-india">Inflation
Calculator</a></li>
<li><a class="dropdown-item" href="emi-calculator-online">EMI Calculator</a></li>
<li><a class="dropdown-item" href="swp-calculator-online">SWP Calculator</a></li>
<li><a class="dropdown-item" href="compound-interest-calculator">Compound Interest
Calculator</a></li>
<li><a class="dropdown-item" href="lumpsum-calculator-online">Lumpsum
Calculator</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
Savings Calculators
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="fixed-deposit-fd-calculator">FD Calculator</a>
</li>
<li><a class="dropdown-item" href="bob-fd-calculator">BOB FD Calculator</a></li>
<li><a class="dropdown-item" href="boi-fd-calculator">BOI FD Calculator</a></li>
<li><a class="dropdown-item" href="pnb-fd-calculator">PNB FD Calculator</a></li>
<li><a class="dropdown-item" href="sbi-fd-calculator">SBI FD Calculator</a></li>
<li><a class="dropdown-item" href="ubi-fd-calculator">UBI FD Calculator</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="rd-calculator">RD Calculator</a></li>
<li><a class="dropdown-item" href="bob-rd-calculator">BOB RD Calculator</a></li>
<li><a class="dropdown-item" href="boi-rd-calculator">BOI RD Calculator</a></li>
<li><a class="dropdown-item" href="pnb-rd-calculator">PNB RD Calculator</a></li>
<li><a class="dropdown-item" href="sbi-rd-calculator">SBI RD Calculator</a></li>
<li><a class="dropdown-item" href="ubi-rd-calculator">UBI RD Calculator</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="sb-calculator">SB Calculator</a></li>
<li><a class="dropdown-item" href="bob-sb-calculator">BOB SB Calculator</a></li>
<li><a class="dropdown-item" href="boi-sb-calculator">BOI SB Calculator</a></li>
<li><a class="dropdown-item" href="pnb-sb-calculator">PNB SB Calculator</a></li>
<li><a class="dropdown-item" href="sbi-sb-calculator">SBI SB Calculator</a></li>
<li><a class="dropdown-item" href="ubi-sb-calculator">UBI SB Calculator</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
About
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="about-us">About us</a></li>
<li><a class="dropdown-item" href="contact-us">Contact us</a></li>
<li><a class="dropdown-item" href="faq-page">FAQ</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link text-white dropdown-toggle" href="#" role="button"
data-bs-toggle="dropdown" aria-expanded="false">
<span class="d-inline-block">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"
fill="currentColor" class="bi bi-translate" viewBox="0 0 16 16">
<path
d="M4.545 6.714 4.11 8H3l1.862-5h1.284L8 8H6.833l-.435-1.286zm1.634-.736L5.5 3.956h-.049l-.679 2.022z">
</path>
<path
d="M0 2a2 2 0 0 1 2-2h7a2 2 0 0 1 2 2v3h3a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-3H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1zm7.138 9.995q.289.451.63.846c-.748.575-1.673 1.001-2.768 1.292.178.217.451.635.555.867 1.125-.359 2.08-.844 2.886-1.494.777.665 1.739 1.165 2.93 1.472.133-.254.414-.673.629-.89-1.125-.253-2.057-.694-2.82-1.284.681-.747 1.222-1.651 1.621-2.757H14V8h-3v1.047h.765c-.318.844-.74 1.546-1.272 2.13a6 6 0 0 1-.415-.492 2 2 0 0 1-.94.31">
</path>
</svg>
</span>
</a>
<ul class="dropdown-menu" data-bs-popper="static">
<li><a class="dropdown-item"
href="./mahila-samman-savings-certificate-mssc-calculator">English</a></li>
<li><a class="dropdown-item"
href="./hi/mahila-samman-savings-certificate-mssc-calculator">हिंदी</a></li>
<li><a class="dropdown-item"
href="./bn/mahila-samman-savings-certificate-mssc-calculator">বাংলা</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<div class="container py-5">
<div class="row">
<div class="col-lg-6 col-12">
<div class="card shadow h-100 border-0">
<div class="card-body">
<div class="px-5 pt-5">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="./">Home</a></li>
<li class="breadcrumb-item active" aria-current="mssc-calculator">MSSC
Calculator</li>
</ol>
</nav>
</div>
<h1 class="lead fs-3 mb-5 px-5">MSSC: Mahila Samman Savings Certificate Calculator
online</h1>
<form class="lead px-5">
<div class="mb-3">
<div class="row">
<div class="col">
<label for="fd_toti" class="form-label">Total Investment</label>
</div>
<div class="col">
<label class="form-label float-end">₹
<span class="fw-bold fs-5" id="inv-disp">10000</span>
</label>
</div>
</div>
<input type="range" class="form-range" min="1000" max="200000" step="500"
value="10000" id="fd_toti" onchange="dispInv()">
<div class="row">
<span class="col" title="Minimum Investment">₹1000</span>
<span class="text-end col" title="Maximum Investment">₹200000</span>
</div>
</div>
<div class="row">
<div class="col">
<div class="mb-3">
<p class="form-label">Interest Rate : <strong class="fs-4">7.5</strong>%
</p>
<input type="hidden" class="form-control" id="fd_roi" value="7.5">
</div>
</div>
<div class="col">
<div class="mb-3">
<p class="form-label text-end">Tenure : <strong class="fs-4">2</strong>
Years</p>
<input type="hidden" class="form-control" id="fd_idur" value="2">
</div>
</div>
</div>
<div class="mb-3">
<p class="form-label">Last Date : <strong
class="text-danger lead attention fs-5">31st March,
2025</strong>
</p>
</div>
<div class="my-4">
<button class="btn btn-primary rounded-pill shadow-none px-5" type="button"
onclick="msscCalculator();">Calculate</button>
</div>
</form>
</div>
</div>
</div>
<div class="col-lg-6 col-12">
<div class="card shadow h-100 border-0">
<div class="card-body py-0">
<div class="px-5">
<div class="card border-0">
<div class="card-body pb-0">
<table id="myTbl" class="lead table table-borderless fs-6 mb-0"></table>
</div>
</div>
<canvas id="myChart"></canvas>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="mt-5" id="intro">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-12">
<h2 class="h4 mb-4">MSSC: Mahila Samman Savings Certificate calculator</h2>
<p class="lead fs-6">In today's world, women play a crucial role in shaping society and contributing
to its growth. To acknowledge their significance and empower them economically, the Government
of India has introduced the Mahila Samman Savings Certificate. This unique financial instrument
offers exclusive benefits to women, encouraging them to invest and secure their future. In this
article, we will delve deep into the details of the Mahila Samman Savings Certificate, its
features, benefits, and how it can provide financial stability to women across the nation.</p>
</div>
<div class="col-lg-3 col-md-3 col-12">
</div>
<div class="col-lg-3 col-md-3 col-12">
<div class="">
<img src="mahila-samman-savings-certificate-mssc-calculator.svg" width="300" height="300"
alt="Mahila Samman Savings Certificate / MSSC Calculator"
title="Mahila Samman Savings Certificate / MSSC Calculator">
</div>
</div>
</div>
</div>
</section>
<section class="mt-5" id="what-why">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-4 col-12">
<ul class="list-group list-group-flush lead fw-bold fs-6 my-3">
<li class="list-group-item border-0">
<a href="sb-calculator"><span class="fs-5">🪙</span> SB
Calculator</a>
</li>
<li class="list-group-item border-0">
<a href="rd-calculator"><span class="fs-5">🪙</span> RD
Calculator</a>
</li>
<li class="list-group-item border-0">
<a href="sukanya-samriddhi-yojana-ssy-calculator"><span class="fs-5">🪙</span> SSY
Calculator</a>
</li>
<li class="list-group-item border-0">
<a href="ppf-calculator"><span class="fs-5">🪙</span> PPF
Calculator</a>
</li>
<li class="list-group-item border-0">
<a href="national-pension-system-nps-calculator"><span class="fs-5">🪙</span> NPS
Calculator</a>
</li>
<li class="list-group-item border-0">
<a href="apy-calculator"><span class="fs-5">🪙</span> APY
Calculator</a>
</li>
<li class="list-group-item border-0">
<a href="pradhan-mantri-jeevan-jyoti-bima-yojana-pmjjby-calculator"><span
class="fs-5">🪙</span> PMJJBY
Calculator</a>
</li>
<li class="list-group-item border-0">
<a href="pradhan-mantri-suraksha-bima-yojana-pmsby-calculator"><span class="fs-5">🪙</span>
PMSBY
Calculator</a>
</li>
<li class="list-group-item border-0">
<a href="kvp-calculator"><span class="fs-5">🪙</span> KVP
Calculator</a>
</li>
<li class="list-group-item border-0">
<a href="national-savings-certificate-nsc-calculator"><span class="fs-5">🪙</span> NSC
Calculator</a>
</li>
<li class="list-group-item border-0">
<a href="sgb-calculator"><span class="fs-5">🪙</span> SGB
Calculator</a>
</li>
</ul>
</div>
<div class="col-lg-9 col-md-8 col-12">
<h2 class="h4 my-4">What is the Mahila Samman Savings Certificate?</h2>
<p class="lead fs-6">The Mahila Samman Savings Certificate is a special savings scheme launched by
the Government of India under the Ministry of Finance. This scheme aims to provide financial
security to women, especially those from economically weaker sections, by encouraging them to
invest and earn substantial returns.</p>
<h2 class="h4 my-4">How to start investment for Mahila Samman Savings Certificate?</h2>
<p class="lead fs-6">Investing in the Mahila Samman Savings Certificate is a straightforward
process. To begin, you need to visit the nearest post office and follow these simple steps:</p>
<ul class="list-group-numbered ps-0 mb-3">
<li class="list-group-item lead fs-6 border-0 mb-2">Fill out the application form: Obtain the
application form for the
Mahila Samman Savings Certificate from the post office and fill in the required details
accurately.</li>
<li class="list-group-item lead fs-6 border-0 mb-2">Provide necessary documents: Submit
necessary documents, such as
identification proof, address proof, and passport-sized photographs, as per the guidelines
provided by the post office.</li>
<li class="list-group-item lead fs-6 border-0 mb-2">Decide on the investment amount: Determine
the amount you wish to
invest in the certificate. Remember, you can choose any amount starting from the minimum
investment requirement set by the government.</li>
<li class="list-group-item lead fs-6 border-0 mb-2">Make the payment: Pay the desired investment
amount at the post
office counter, and you will receive the Mahila Samman Savings Certificate in return.</li>
</ul>
</div>
</div>
</div>
</section>
<section class="mt-5" id="benefits">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h4 mb-3">Understanding the Benefits</h2>
</div>
</div>
<div class="row">
<div class="col-md-6 col-12">
<div class="card border-0 mb-3">
<div class="card-body px-0">
<h3 class="h5 mb-3">1. Higher Interest Rates</h3>
<p class="lead fs-6">One of the significant advantages of the Mahila Samman Savings
Certificate is the attractive interest rates it offers. These rates are often higher
than traditional savings accounts, making it an ideal choice for women looking for
steady returns on their investment.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card border-0 mb-3">
<div class="card-body px-0">
<h3 class="h5 mb-3">2. Tax Benefits</h3>
<p class="lead fs-6">Investing in the Mahila Samman Savings Certificate can also help women
save on taxes. The interest earned on these certificates is eligible for tax deductions
under Section 80C of the Income Tax Act, reducing the overall tax burden.</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card border-0 mb-3">
<div class="card-body px-0">
<h3 class="h5 mb-3">3. Government-Backed Security</h3>
<p class="lead fs-6">One of the primary reasons for the popularity of the Mahila Samman
Savings Certificate is its government-backed security. The certificate is issued by the
Government of India, providing investors with assurance and peace of mind.</p>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<div class="card border-0 mb-3">
<div class="card-body px-0">
<h3 class="h5 mb-3">4. Flexibility in Investment</h3>
<p class="lead fs-6">Women can choose the investment amount as per their financial
capabilities. The Mahila Samman Savings Certificate allows for flexibility in
investment, making it accessible to women from all walks of life.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="mt-5" id="advantages-disadvantages">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="text-center h4 mb-5 ps-3">Advantages / Disadvantages of MSSC</h2>
</div>
</div>
<div class="row">
<div class="col-md-6 col-12">
<h3 class="h5 mb-3 ps-3">Advantages of </br>Mahila Samman Savings Certificate Scheme</h3>
<ul class="list-group list-group-numbered list-group-flush lead fs-6">
<li class="list-group-item border-0">Good return of interest for investment could be earned by
MSSC.</li>
<li class="list-group-item border-0">Investment tenure is not so long and mature after 2 years.
</li>
<li class="list-group-item border-0">Partial withdrawl is also possible after 1 year and
withdraw upto 40%.</li>
<li class="list-group-item border-0">Women empowerment scheme introduced by Government of India.
</li>
<li class="list-group-item border-0">Minor girls also benifited by the MSSC scheme.</li>
<li class="list-group-item border-0">Not only Post Offices, this oppertunity also available in
Banks.</li>
<li class="list-group-item border-0">No maximum age limit, senior female citizens also get
benefitted.</li>
</ul>
</div>
<div class="col-md-6 col-12">
<h3 class="h5 text-end mb-3 pe-3">Disadvantages of </br>Mahila Samman Savings Certificate Scheme
</h3>
<ul class="list-group list-group-numbered list-group-flush lead text-end fs-6">
<li class="list-group-item border-0">No exemption for Income Tax deduction / TDS.</li>
<li class="list-group-item border-0">Only 40% can be withdraw before maturity.</li>
<li class="list-group-item border-0">Only for Girls / Women and not for others.</li>
<li class="list-group-item border-0">Maximum limit is only 2 lakhs.</li>
<li class="list-group-item border-0">Last date is 31st Mar, 2023</li>
<li class="list-group-item border-0">Maximum Tenure is 2 years MSSC</li>
</ul>
</div>
</div>
</div>
</section>
<section class="mt-5" id="tips">
<div class="container">
<div class="row">
<div class="col-md-9 col-12">
<h2 class="h4 mb-3">Tips for Maximum Returns</h2>
<p class="lead fs-6">To ensure you make the most of your investment in the Mahila Samman Savings
Certificate, consider the following tips:</p>
<ul class="list-group-numbered ps-0 mb-3">
<li class="list-group-item lead fs-6 border-0 mb-2"><strong>Long-Term Investment</strong> :
While the scheme offers liquidity, consider keeping the investment for the entire tenure to
enjoy maximum returns.</li>
<li class="list-group-item lead fs-6 border-0 mb-2"><strong>Reinvestment of Interest</strong> :
Instead of withdrawing the interest earned, consider reinvesting it to compound your
returns.</li>
<li class="list-group-item lead fs-6 border-0 mb-2"><strong>Regular Contributions</strong> :
Make regular contributions to the certificate to build a sizeable corpus over time.</li>
<li class="list-group-item lead fs-6 border-0 mb-2"><strong>Stay Updated</strong> : Stay
informed about any changes in the scheme or interest rates to make informed decisions.</li>
</ul>
</div>
<div class="col-md-3 col-12">
<img src="mahila-samman-savings-certificate-calculator.svg" width="300" height="300"
alt="Mahila Samman Savings Certificate Calculator"
title="Mahila Samman Savings Certificate Calculator">
</div>
</div>
</div>
</section>
<section class="mt-5" id="conclusion">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h4 mb-3">Conclusion</h2>
<p class="lead fs-6">The Mahila Samman Savings Certificate is a commendable initiative by the
Government of India to promote financial inclusion and empower women. By offering attractive
interest rates, tax benefits, and government-backed security, this scheme provides an excellent
opportunity for women to secure their financial future. Investing in the Mahila Samman Savings
Certificate can pave the way for a brighter and more stable tomorrow.</p>
<p class="lead fs-6">Remember, financial independence is not only about wealth but also about
creating a path to achieve dreams and aspirations. So, if you're a woman seeking financial
security, the Mahila Samman Savings Certificate might be the right choice for you.</p>
</div>
</div>
</div>
</section>
<section class="mt-5" id="faqs">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="h4 mb-3">FAQ - Frequently asked questions</h2>
</div>
</div>
<div class="row">
<div class="col-md-6 col-12">
<p>Can a non-resident Indian (NRI) invest in the Mahila Samman Savings Certificate?</p>
<p class="lead fs-6">No, any NRI are not eligible for Mahila Samman Savings Certificate investment
and this scheme only available for Indian citizens / women / girls resides in India</p>
</div>
<div class="col-md-6 col-12">
<p>Is there any lock-in period for this scheme?</p>
<p class="lead fs-6">Yes, the Mahila Samman Savings Certificate has a lock-in period of 2 years from
the date of purchase.</p>
</div>
<div class="col-md-6 col-12">
<p>Can I avail a loan against the Mahila Samman Savings Certificate?</p>
<p class="lead fs-6">Yes, you can avail a loan against the certificate after the completion of one
year from the date of purchase.</p>
</div>
<div class="col-md-6 col-12">
<p>Can the Mahila Samman Savings Certificate be transferred to another person?</p>
<p class="lead fs-6">No, the certificate is non-transferable.</p>
</div>
<div class="col-md-6 col-12">
<p>Is partial withdrawal possible in case of emergencies?</p>
<p class="lead fs-6">Yes, partial withdrawal is possible after one year up to 40% of the existing
Account balance.</p>
</div>
<div class="col-md-6 col-12">
<p>Can a minor invest in the Mahila Samman Savings Certificate?</p>
<p class="lead fs-6">Yes, a minor can invest in the certificate, but the investment should be made
by their guardian.</p>
</div>
<div class="col-md-6 col-12">
<p>What is the interest rate offered on Mahila Samman Savings Certificate Account (MSSC)?</p>
<p class="lead fs-6">An interest rate of 7.5% p.a. is applicable on Post Office Mahila Samman
Savings Certificate (MSSC) currently.</p>
</div>
<div class="col-md-6 col-12">
<p>Is Post Office MSSC suitable for senior citizens?</p>
<p class="lead fs-6">Yes, it's only for women of India either she is a senior citizen or a minor
girls. A indian female citizen with 18 years of age can be invest on MSSC and no maximum age
limit for Mahila Samman Savings Certificate Scheme.</p>
</div>
<!-- <div class="col-md-6 col-12">
<p>Can we withdraw money from MSSC before maturity?</p>
<p class="lead fs-6">Yes, it's possible for MSSC account holder can able to withdraw partial amount
and upto 40% of invested amount, after 1 year from the date of opening.</p>
</div> -->
<div class="col-md-6 col-12">
<p>Is there any last date for MSSC?</p>
<p class="lead fs-6">Yes, the last date of opening a Mahila Samman Savings Certifacate is 31st Mar,
2025. MSSC investment started in 2023 and can able to utilise the benifit to get good return of
interest on your savings upto Mar, 2025. </p>
</div>
<div class="col-md-6 col-12">
<p>Is there any Income Tax benifits for MSSC?</p>
<p class="lead fs-6">Earning from the interest of MSSC is Taxable as per the law like TDS. No
exemption for Income Tax available for it.</p>
</div>
</div>
<div class="row">
<div class="col-12">
<ul class="list-group list-group-flush lead fs-6 my-3">
<li class="list-group-item text-secondary p-0 border-0">
<time datetime="2024-04-02T02:16:53+05:30">Updated : April 02, 2024</time>
</li>
<li class="list-group-item text-secondary p-0 border-0">
<time datetime="2023-09-12T05:46:53+05:30">Published : September 12, 2023</time>
</li>
<li class="list-group-item pt-0 px-0">
Author : <a href="https://anupammondal.in" title="Posts by Anupam Mondal"
rel="author">Anupam Mondal</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="internal-links py-5">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 col-12">
<div class="card lead fs-6 my-4">
<div class="card-body">
<h4 class="fs-6 ps-3 mt-3">Few more Tax Calculators</h4>
<hr class="mx-3 w-50" />
<ul class="nav flex-column">
<li class="nav-item">
<a class="nav-link" href="capital-gain-tax-calculator">Capital Gain Tax
Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link" href="gst-calculator">GST Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link" href="income-tax-calculator">Income Tax Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link" href="service-tax-calculator">Service Tax Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link" href="tds-calculator">TDS Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link" href="vat-calculator">VAT Calculator</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div class="card bg-light lead fs-6 my-2">
<div class="card-body">
<h4 class="fs-6 ps-3 mt-3">Our Finance Calculators</h4>
<hr class="mx-3 w-50" />
<ul class="nav flex-column">
<li class="nav-item">
<a class="nav-link" href="emi-calculator-online">EMI Calculator Online</a>
</li>
<li class="nav-item">
<a class="nav-link" href="systematic-investment-plan-sip-return-calculator">SIP
Return Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link" href="swp-calculator-online">SWP Calculator Online</a>
</li>
<li class="nav-item">
<a class="nav-link" href="inflation-calculator-india">Inflation Calculator India</a>
</li>
<li class="nav-item">
<a class="nav-link" href="lumpsum-calculator-online">Lumpsum Calculator Online</a>
</li>
<li class="nav-item">
<a class="nav-link" href="simple-interest-calculator">Simple Interest Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link" href="compound-interest-calculator">Compound Interest
Calculator</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-12">
<div class="card lead fs-6 my-4">
<div class="card-body">
<h4 class="fs-6 ps-3 mt-3">Some Savings Calculators</h4>
<hr class="mx-3 w-50" />
<ul class="nav flex-column">
<li class="nav-item">
<a class="nav-link" href="senior-citizens-savings-scheme-scss-calculator">SCSS
Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link" href="mahila-samman-savings-certificate-mssc-calculator">MSSC
Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link" href="post-office-monthly-income-scheme-mis-calculator">MIS
Calculator</a>
</li>
<li class="nav-item">
<a class="nav-link" href="post-office-time-deposit-td-calculator">TD Calculator</a>
</li>