Skip to main content

WISH YOU HAPPY HOLI........................

Holi is the festival of color and joy. It is the day when the bright colors of Holi diminish all the discriminations of caste and creed in society. The colors of Holi also bring along with themselves the spirit of joy, naughtiness, passion and enthusiasm. The festival in itself is the celebrations of the divine love of Radha and Krishna as well as the commemoration of the fact that ‘Goodness always triumphs over evil’ and the verity that ‘Truth is always universal’. There is an eternal meaning of Holi beyond the ‘color play’ and ‘grand feasts’.
History of Holi
The exact origin of the festival can not be found, though several historians claim that the Holi celebration in the country was brought along with the Aryans. It is also quoted as a reason that Holi is still celebrated with great zeal in the more Aryan dominant Northern and Eastern India. There is also a detailed description of this festival in early religious works such as Jaimini's Purvamimamsa-Sutras and Kathaka-Grhya-Sutras. Several other religious and historical texts also discuss in detail about the festival.

It is said that Holi is celebrated in India, since an immemorial time, even in the period before Christ. However, the meaning of the festival is believed to have changed over the eras and phases. Long ago, Holi was a special rite performed by married women for the happiness, well-being and prosperity of their families and the full moon (Raka) was worshiped for bringing auspiciousness and pleasure. With time the way of celebration has changes. Also, the prominent legends related to the festival have changed with time.

Comments

Popular posts from this blog

Standard and Formatted Input / Output in C++

The C++ standard libraries provide an extensive set of input/output capabilities which we will see in subsequent chapters. This chapter will discuss very basic and most common I/O operations required for C++ programming. C++ I/O occurs in streams, which are sequences of bytes. If bytes flow from a device like a keyboard, a disk drive, or a network connection etc. to main memory, this is called   input operation   and if bytes flow from main memory to a device like a display screen, a printer, a disk drive, or a network connection, etc., this is called   output operation . Standard Input and Output in C++ is done through the use of  streams . Streams are generic places to send or receive data. In C++, I/O is done through classes and objects defined in the header file  <iostream> .  iostream  stands for standard input-output stream. This header file contains definitions to objects like  cin ,  cout , etc. /O Library Header Files There are...

Genetic Algorithm: Population, Fitness Function, Parent Selection, Cross over, Mutation

Genetic Algo Population Population is a subset of solutions in the current generation. It can also be defined as a set of chromosomes. There are several things to be kept in mind when dealing with GA population − The diversity of the population should be maintained otherwise it might lead to premature convergence. The population size should not be kept very large as it can cause a GA to slow down, while a smaller population might not be enough for a good mating pool. Therefore, an optimal population size needs to be decided by trial and error. The population is usually defined as a two dimensional array of –  size population, size x, chromosome size . Population Initialization There are two primary methods to initialize a population in a GA. They are − Random Initialization  − Populate the initial population with completely random solutions. Heuristic initialization  − Populate the initial population using a known heuristic for the problem. It has been observed that the e...

Normalization in DBMS: 1NF, 2NF, 3NF and BCNF in Database

Normalization   is a process of organizing the data in database to avoid data redundancy, insertion anomaly, update anomaly & deletion anomaly.  Anomalies in DBMS There are three types of anomalies that occur when the database is not normalized. These are – Insertion, update and deletion anomaly. Let’s take an example to understand this. Example : Suppose a manufacturing company stores the employee details in a table named employee that has four attributes: emp_id for storing employee’s id, emp_name for storing employee’s name, emp_address for storing employee’s address and emp_dept for storing the department details in which the employee works. At some point of time the table looks like this: emp_id emp_name emp_address emp_dept 101 Nikhil Kangra D001 101 Nikhil Kangra D002 123 Ashish Shimla D890 166 Rahul Pathankot D900 166 Rahul Pathankot D004 The above table is not normalized.  Update anomaly : In the above table we have two rows for employee Nikhil as he belongs ...