Star patterns set 1

You are currently viewing Star patterns set 1
Star patterns set 1

Whenever  you prepare for Interview you must be aware with printing patterns , In coding interview interviewer may ask you print any number pattern , alphabet pattern or an character patterns. We recommend you to follow our patterns series so you will feel comfortable with printing patterns. In this blog post you will find set 1 of star patterns.

We recommend you to solve other types patterns as well –

 Click on the pattern and you will get redirected to the code.

Pattern 1

*****
*****
*****
*****
*****

Code for pattern 1

Pattern 2

*****
****
***
**
*

Code for pattern 2

Pattern 3

*
**
***
****
*****

Code for pattern 3

Pattern 4

*
**
***
****
*****
****
***
**
*   

Code for pattern 4

Pattern 5

*****
****
***
**
*
**
***
****
*****  

Code for pattern 5

Leave a Reply