Skip to main content

रक्षाबंधन पर निबंध गुजराती मा



रक्षाबंधन पर निबंध गुजराती मा

રક્ષાબંધન એ હિન્દુ સંસ્કૃતિનો એક વિશાળ તહેવાર છે. આ ઉત્સવ દેશભરમાં ઉજવવામાં આવે છે. આ દિવસે બહેન પોતાના ભાઈ સાથે રાખડી બાંધે છે. અને તેના ભાઇને બચાવવા જવાબદારી આપે છે આ તહેવાર Augustગસ્ટ મહિનામાં આવે છે. તે જ દિવસે, બહેન તેના ભાઇની કાંડા પર રાખડી બાંધે છે અને તેઓ એકબીજાને સુરક્ષિત રાખવાની પ્રતિજ્ .ા લે છે. રક્ષા એટલે સુ રક્ષા, બંધન એટલે દોરો બાંધવાનો.
  આ દિવસે લોકો વહેલી સવારે જાગે છે અને નવા કપડા પહેરે છે. બહેન શણગારેલી રાખડી વાનગી આમાં મીઠાઈઓ, હળદર-કુમકુમ, થોડું ભાત, આરતી વગેરે શામેલ છે. ભાઈ તેની બહેનની પસંદની ભેટ પણ લઈને આવે છે. તેણીને ભેટોથી આશીર્વાદ આપે છે. બહેન તેના ભાઈ સાથે એક સુંદર રાખડી બાંધે છે (ભલે તે માત્ર એક દોરો હોય. પણ રાખડી એક દોરો છે) અને પછી તેને બર્ફી અથવા પેડા ખવડાવે છે. આ તહેવાર પરંપરાગત છે. પરંપરાગત રીતે ઉજવણી. રામાયણ અને મહાભારત પ્રારંભિક સમયથી છે. તેમાં, બહેન યુદ્ધમાં તેના ભાઇની સલામતી માટે પ્રાર્થના કરે છે. જો કોઈ છોકરી કોઈને ભાઈ માને છે, તો તે તેની રાખીને બાંધી શકે છે.

Comments

Popular posts from this blog

Classification of Networks Based on Geographical Classification

               ***Classification of Networks Based on Geographical Classification***                   In this section ,we will discuss the following categories of networks.                                                                                                                 PAN ...

IS THERE ANYTHING THROUGH WHICH WATER CANNOT PASS BUT AIR PASSES???

IS  THERE ANYTHING THROUGH WHICH WATER CANNOT PASS BUT AIR PASSES??? YES, there is a substance that allows to water vapour to pass but not air. Read carefully Teflon is a substance that allow to pass to water vapour but not to the air, both are same and also nearly about same in form i.e. gases form…                 Point is that if we want to pass small molecules from anything it is possible because of small pores, holes and gaps present between it. Because of that small holes molecules are passed out. Large things are not pass through small small holes. water permeable image But in this case both the constituents are in the same form but one cannot pass and another can be pass from it, but why now we explain it.                 By stretching the substance that from we want to pass water or air small pores are formed millions...

Simple java prime or not program

public class PrimeExample{     public static void main(String args[]){       int i,m=0,flag=0;         int n=3;//it is the number to be checked       m=n/2;         if(n==0||n==1){      System.out.println(n+" is not prime number");         }else{      for(i=2;i<=m;i++){           if(n%i==0){            System.out.println(n+" is not prime number");            flag=1;            break;           }          }          if(flag==0)  { System.out.println(n+" is prime number"); }     }//end of else   }     }