Skip to main content

Comparing Series EE and Series I Savings Bonds

 

Treasury currently offers two series of savings bonds:  EE and I. You can buy  EE bonds and I bonds in electronic format in TreasuryDirect.  You can buy paper I bonds with your IRS tax refund.

 

EE bonds

I bonds

Purchase price for paper bonds

  • Paper EE bonds are no longer available

 

  • Paper I bonds can be purchased with your IRS tax refund at face value (a $50 bond costs $50)

Purchase price for electronic bonds

Electronic EE and I bonds are sold at face value.

Denominations available electronically

Any amount of $25 or more to the penny. For example, you could buy an EE or an I bond for $50.23.

Interest earnings (electronic and paper are the same)

Interest depends on when the EE bond was issued:

  • EE bonds issued in May 2005 and after earn a fixed rate of return.
  • EE bonds issued from May 1997 through April 2005 earn variable rates.

I bonds earn a rate derived from:

  • a fixed rate of return known when you buy the bond, and
  • an inflation rate that we calculate twice a year

Maximum amount you can buy

In any one calendar year for one Social Security Number: You may buy up to $10,000 in electronic EE bonds, up to $10,000 in electronic I bonds, and, using your tax refund, up to $5,000 in paper I bonds.

When interest is earned and compounded

Interest is earned monthly and compounded semiannually until the bonds reach 30 years or until you cash them, whichever comes first.

When bonds can be cashed (redeemed)

After 12 months

Penalty for cashing early

Loss of previous three months of interest if you cash during the first five years. For example, if you cash the bond after 18 months, you get the first 15 months of interest.

Income Taxes

Income tax applies at the federal level, but not the state and local levels. Report interest on your federal return either every year or for the year when the first of these things happens: the bond matures, you cash the bond, or you give up ownership of the bond and it is reissued.

Tax benefits may be available when you use the money for higher education.

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...