Skip to main content

Bhagwan Ganesh- First Worship

                Bhagwan Ganesh- First Worship

Lord Ganesha is the deity worshipped in Hinduism. so,they are called deity for first worship. Any worship without Lord Ganesha is incomplete. Because God Ganesha was given a boon by all the gods. That when any god is worshipped then first of all Lord Ganesha will be worshipped. Lord Ganesha is the younger son of Mata Parvati and Lord Shankara.

Birth story of Lord Ganesha:-

Lord Ganesha was born by Mata Parvati, once Lord Shankara was engulfed in severe penance, and many of his elder son  Karthikeas had gone, Mata Parvati became alone. Then Goddess Parvati produced Lord Ganesha by scum of her body. Mother Parvati was very happy to see Ganesha.


When Mata Parvati went to bathe, Mata Parvati asked Ganesha to guard outside the cave, that no one should enter the cave unless I give orders. So to obey the mother's orders, Ganesha and his ride Musak both started guarding outside the cave.

How did Ganesha get an elephant's head:-

When Mata Parvati asked Ganesh to guard her, Ganesh and Musak started guarding outside the cave. Only then did the austerity of Lord Shankar from Sayong end, Lord Bhole Nath came where Ganesh was guarding. Shankar ji tried hard but he did not enter inside.seeing all this, Lord Shankar got very angry, and he separated Ganesha from his trunk with his trident.

Seeing all this, Goddess Parvati also come there, and seeing this condition of her son, mother felt very sad and angry. Mother told Lord Shankara that he is his son.

Then God sent his people, whoever looked in the face in the north direction and fell asleep, brought his head cut off. Showing the child of an elephant to the Ganas, he cut off his head. Lord Shankar applied the elephant head to Ganesha with his hands and Lord Ganesha was born.

Why is Ganesha called first worship :-

Once Ganesha and Karthik debated who was the best among us. Then there was a competition in both of them, who will first go through the entire universe dive and this will be the victory of this competition.


When the competition started, Karthik went ahead and Ganesha used his intelligence. Ganesha planted seven circles of his parents, then God asked what did you do, then Ganesha, where the whole universe was in my parents. Hearing this answer, all the gods were questioned, and declared Ganesha the winner of this competition.

Since then, Ganesha has been declared the first worship of all gods, since then, Lord Ganesha is worshipped first till date, otherwise it is considered incomplete prayer without them.


All Copyrights Reserved,these all words are my personal thinking about Ganesha.I never be copy someone article,all this content written by Gyan..

Thanks,To Visit Here.Follow For more Updates.If you like this post of Ganesha please share it and comment about it.


Comments

Popular posts from this blog

Control Statements in c language

So, Today we are going on new topic name control statements in C language. In which we read Looping(For, While and Do While), Jumping(Break, goto and Continue) and Decision Control statements(Switch, If, If Else and  If else if ladder)  in C. Before you read this article May you also like our previous posts :-    Structure Of C Language Program   Variables & Datatypes In C Language    Format Specifier In C Programming  .   It may help you to understanding it. A Statement is the smallest unit that is a complete instruction in itself statements contains expression and usually end with a semicolon. Statements are of two Types:- Types of Statements in C  1. Sequential Statement   2. Control Statement Sequential Statements are statements which are executed by one in sequential manner. Control Statements are the statements which alter the flow of execution and provide better control to the programme. On the flow of execution. The...

Array in C Language Btech Bca Notes

 Array in C Language Btech Bca Notes An array is a data form that can hold several values all of the same type. An array is a collection of variable of the same type that are referral to by a common name. Also Read:   Beginner our view on C programming Language  . Array are vital for most programming language. They are collection of variables, which we call elements. Each of the element in an array is stored sequentially in the computeric memory.  This making it easy to  m anipulate them and navigate among them. Since all the elements in an array are of same type, array allows us to represent a group of similar elements as an ordered  sequence  and work on them as a whole (grouping together related data). Array organize data in such a way that it can be easily sorted. To create an array, we use a declaration statement. An array declaration should indicate three things: 1. The type of value to be stored in each element. 2. The name of the array. 3. The ...

Format Specifier In C Programming Btech BCA Notes

   Format Specifier In C Programming Btech BCA Notes Welcome, Hope you are doing well. Today we are talking about Foramat specifier in C language. We can also say Type Specifier In C.  So, Today we are read formate specifier as well as printf and scanf Formats in different situations and different conditions. Before you read this article May you also like our previous posts :-    Beginner our view on C programming Language     Structure Of C Language Program   Variables & Datatypes In C Language  . It may help you to boost Your Information. In C Programming language, Types specifier is a special piece of code which is used during the input and output. Type specifier inform the compiler about the type of data which will be entered or displayed during an input output operation. Input mans reading data from keyword while output means displaying data either on screen or a printer. In c – Language every datatype has its own type specifier...