Saturday, November 10, 2018

About dashain and tihar

                           Dashain



Nepal is a country rich in culture and traditions. The varieties of festivals and occasions we celebrate carry their own significance. The main festivals of Nepalese are the Dashain and the Tihar which they choose to celebrate with their close friends, relatives and family.
Among the festivals we celebrate, Dashain being the greatest one for Nepalese is always celebrated with the zeal and in joyful ways. It is celebrated almost for 15 days in the month of October; 1st, 7th, 8th, 9th and 10th days are the most important.
The 1st day is welcomed following the rituals of ‘Ghatsthapana’ by worshiping Goddess Durga for 9 consecutive days. The main day is called ‘Dashami’ which is also known as ‘Vijaya Dashami’, the day when Goddess Durga got victory over the demons. On this day the seniors of the family put ‘Tika’ and ‘Jamara’ giving blessings to their younger ones. The special money given to the younger ones is received as ‘Dakchhina’. This day is like a family reunion where everyone enjoys with the varieties of food, playing cards, flying kites, etc. Dashain not only reunites the families and friends but it also gives the working people time to relax and enjoy with family.



                                   Tihar


Tihar is another beautiful and dazzling festival for the Hindus which is the second greatest festival for Nepalese, after Dashain. It is said to be the festival of the lights. The cities and the surroundings look very clean and wonderful with the smell and presence of the marigold flowers during the festival
The festival usually falls in the month of October or November, celebrated for five days worshiping 4 different animals i.e. Kaag Tihar (Crow Tihar), Kukur Tihar (Dog Tihar), Gai Tihar (Cow Tihar)- the main day to worship the goddess of wealth, Laxmi, Goru Tihar (Ox Tihar) and the 5th day is celebrated as ‘Bhaitika’ which signifies and carries great importance for the love and concern between brothers and sisters. The sisters put the seven colors Tika on the brother’s forehead and pray for their longer life and progress. Tihar always brings excitement and jolly mood in the families and friends; playing ‘Deusi-bhailo’ and trying the best to welcome goddess Laxmi, who is believed to bring the happiness and wealth in the life of everyone



Tuesday, September 18, 2018

Qbasic programs to reverse the digits

                        # Write a program to reverse the digits 


        CLS
        INPUT "enter any number";N
        S = 0
       WHILE N< > 0
       R = N MOD 10
       S = 10 + R
       N = N \ 10
       WEND
       PRINT "Reverse digits ="; S
       END

Saturday, September 15, 2018

About Teej

Teej is a festival celebrated by Nepali women, for the long life of her husband and long and firm relationship between them until the death this life and all the lives to come. Teej is observed for marital happiness, well-being of spouse and children and purification of own body. Teej is  the most famous festival among Nepali women. 

The folk music and dances add more flavor to traditional values of Teej. It is good to see women, in “Red” dancing and singing on the street, going to temple in holy and fasting mood. Teej is also called Hari Talika Teej. This festival is celebrated by Nepali Hindu women. Teej is celebrated on 3rd bhadra.https://goo.gl/images/ncBw3x


In the first day:


First day is called darkhane din.On this day all the family members especially the women, both married and unmarried gather at one place, in their finest outfits of red  and start dancing and singing devotional songs mixed with Nepali folk and Dohori songs.Women who go in fasting the very next day eat a very big feast...."daro khana" that means a heavy food in Nepali....it is said daro khane became dar. 

In the second day:

Second day is the main day of Teej (the fasting day). Some women take it very rigid, they even live without a piece of food and drops of water while some others take liquid and fruit. On this day, they happily dress in red,  women wear their lagan ko pote, nathhi, other jewelries and chadke tilahari ( jewelries are optional but chadke tilahari, laganko pote and natthi is said to be most important) and visit a nearby Lord Shiva’s temple singing and dancing all the way.https://goo.gl/images/Rdw7jJ



In the third day:


Women get up early in the dawn and get cleaned and do the puja once again to the diyo and goddess Parvati. The most important part of this puja is a banana and holy basil (Tulsi patta) leaf. Only after this puja, women take solid food. This third day of Teej is Ganesh Chaturthati. Women eat Karkalo ko Tarkari with chokho (pure) food made with pure ghee.  https://goo.gl/images/zxuki9

Monday, September 10, 2018

Fathers

           Father is the most important thing in everyone's life.Father is that person who always support their child and their family by earning money for food,education,clothes and other usefull things.We have to love our father because they always do hard work for us.All the fathers dreams big and we have to fullfill their dreams .Father name is bharat chaudhari.He is a teacher. He works in many colleges and schools . He goes school at 8 a.m and return home in 7 p.m. He is doing job for our family.A father is male parent of child.Besides the parantal bonds of a father to his children, the father may have a parental , legal , and social relationships with the child Carries certain rights.

Monday, August 27, 2018

Gai jatra

Gai Jatra is a carnival of dancing, singing, mirth and laughter. The festival of cow is celebrated in the Kathmandu Valley to commemorate the death of loved ones.  As part of the festival family members of the deceased of the past year send people dressed as cows to parade on the streets.The festival usually falls in July or August. 

Raksha bandhan

The festival of Raksha Bandhan is observed as a symbol of duty between brothers and sisters. The occasion is meant to celebrate any type of brother-sister relationship between men and women. In this festival we have to tie a beautiful thread in our wrist by our sisters, cousin,nephew,aunty. It festival is celebrated in the month of shrawan.It mainly celebrated by Hindus.

About janai purnima

Janai purnima is a festival of Hindu which is very popular in our  Nepal 🇳🇵 .It is celebrated in the month of shrawan.In this festival we should tie a thread on our wrist  by our sisters. Janai means thread and purnima means 🌕  day.Each and every year it is celebrated . This festival is specially celebrated by brahmins and  Chettris. This festival means that we have to protect our sisters.

Saturday, June 23, 2018

Qbasic programs

1.  Write a program to input any number and .check whether the given number is divisible by 3 and 7 or not.

CLS
INPUT "Enter any number"; N
IF N MOD 3=0 AND N MOD 7=0 THEN
PRINT "The number is divisible by 3 and 7"
ELSE
PRINT "The number is not divisible by 3 and 7"
END IF
END

2.  Write a program to input any number and check whether the give number is positive or negative.

CLS
INPUT "Enter any number"; N
IF N > 0 THEN
PRINT "Positive number"
ELSEIF  N < 0  THEN
PRINT  " Negative number"
END IF
END

3.Write a program to input any number and display whether it is odd or even.

CLS
INPUT "Enter any number"; N
IF N MOD 2=0 THEN
PRINT "Even number"
ELSE
PRINT "Odd number"
END IF
END

4. Write a program to enter any two numbers and display the smaller one.

CLS
INPUT "Enter any two numbers"; a, b
IF a<b THEN
PRINT "The smallest number is"; a
ELSE
PRINT "The smallest number is"; b
END IF
END

5.Write a program to enter any three numbers and display the middle number.

CLS
INPUT "Enter any three numbers"; a, b, c
IF a>b AND a<c  OR  a<b AND a>c  THEN
PRINT "The middle number is";a
ELSEIF b>a AND b<c OR b<a AND b>c THEN
PRINT "The middle number is";b
ELSE 
PRINT "The middle number is";c
     END IF
END

6.Write a program to test whether a user input number is completely divisible by 13 or not.

CLS
INPUT "Enter any number"; N
IF N MOD 13=0 THEN
PRINT "The number is completely divisible by 13"
ELSE
PRINT "The number is not completely divisible by 13"
END IF 
END

7.Write a program to check whether a input number is positive, negative or zero.

CLS
INPUT "Enter any number"; N
IF N>0 THEN 
PRINT "Positive number"
ELSEIF N<0 THEN 
PRINT "Negative number"
ELSE
PRINT "The number is zero"
END IF
END

8. Write a program to input a year and display whether that year is a leap year or not.


CLS

INPUT  "Enter year"; Y
IF Y MOD 4=0 AND Y MOD 100 <> 0 OR Y MOD 400=0 THEN
PRINT "The year is leap year"
ELSE
PRINT "The year is not leap year"
END IF 
END

9. Input the age of a person and find out whether the person is eligible to drive or not.

CLS
INPUT "Enter your age"; A
IF A>= 16 THEN
PRINT "You are eligible to drive"
ELSE
PRINT "You are not eligible to drive"
END IF 
END

10.Write a program to enter any three numbers and display the greatest one.

CLS
INPUT "Enter any three numbers"; a, b, c
IF a>b AND a>c THEN
PRINT "The greatest number is"; a
ELSEIF b>a AND b>c THEN 
PRINT "The greatest number is";b
ELSE
PRINT "The greatest number is";c
END IF 
END