Skip to main content

3 Tips For Buying US Saving Bonds & Earning Extra Interest

 

Tip 1: Buy At The End Of The Month, Cash-In At The Beginning Of The Month

You will earn an extra month of interest! Both I and EE saving bonds are issued the first of the month in which they are purchased. In you purchase them on the last business day of the month, you will receive interest as if you bought them the first day of the month.

However, interest is always paid the first day of the month. If you cash-in your bonds two weeks into the month, you will not receive any further interest payments and will miss re-investing the money for those two weeks. Bottom line, if you buy a savings bond the last business day of the month and cash it in the first business day of the month, you will be getting an addition month of interest for free.

Tip 2: Check To See If Interest Rates on the 10 Year US Treasury Have Moved, If You Are Thinking About Buying In April or October.

Interest rates for the EE savings bond and the fixed rate component of the I bond are set on May 1st and November 1st. For the EE bond, the rate is based upon (but somewhat lower than)  the 10 Year Treasury note. Because you can compare the rate on 10 Year US Treasuries today to the rate six months ago , you can effectively choose the higher rate by either purchasing the savings bond in April or October, or waiting a couple weeks for the rate to change.

Tip 3: When You Have Several Bonds To Redeem, Keep In Mind:

  •  Redeem all savings bonds which are over 30 years old. They have stopped paying interest.
  • The different bonds you are considering redeeming may be paying different interest rates, you might want to keep the highest interest paying bond rather than the oldest which may be paying a lower rate of interest.
  • EE bonds when held for 20 years are guaranteed to double in value. This guarantee makes the effective interest rate when held to maturity approximately 3.5%. In other words, if your EE bond pays less than 3.5% and is close to maturity, try not to cash it in.

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...