Posts

Dashain Vacation homework

Hello! Everyone. I'm Simson limbu .we students of grade 8 section A and B both were assigned for a task in which we were told to post our experience about Dashain and Tihar separately in our blog. So, after the completion of our Dashain vacation I’m posting my Dashain experience. So, before starting my experience I would like to introduce our festival ‘Dashain’.  Introduction Nepal is the land of festivals which is rich in culture and tradition. There several local festivals celebrated in particular place by particular caste or community. Local festivals are different than those of national festivals. National festival is celebrated throughout the country like Dashain, Tihar etc. Among them the Dashain is one. Dashain is a fifteen-day-long national festival of  Nepal , the  Indian hill states  of  Sikkim ,  Assam  and  Darjeeling district  and among the  Lhotshampa  of  Bhutan  and the  Burmese Gurkhas  of  Myanmar . It is the longest and the most auspicious festival in th

VACATION HOMEWORK

                             TIHAR VACATION HOMEWORK                                                                                                            Hello once again Tihar is the second biggest Nepalese festival after Dashain. It is considered to be of great importance as it shows reverence to not just the humans and the gods, but also to the animals like crows, cows, and dogs that maintain an intimate relationship with humans. People make patterns on the floor of living rooms or courtyards using materials such as colored rice, dry flour, colored sand or flower petals outside of their house, called Rangoli, which is meant to be a sacred welcoming area for the Gods and Goddesses of Hinduism mainly Goddess Laxmi.                                                                                                                                                                      Today let's talk about my tihar experience. First Let me write something about tihar.         

QBASIC PROGRAMS

                                                      QBASIC  1. Write a program that asks mark in any subject and display the message "Result Pass" if the input number is greater than 40.         CLS         INPUT "Enter marks in computer"; C         IF C> = 40 THEN PRINT "RESULT PASS" ELSE PRINT "RESULT FAIL"         END 2. Write a program that asks any two numbers and displays the greater one.         CLS         INPUT "ENTER FIRST NUMBER";A         INPUT "ENTER SECOND NUMBER";B         IF A>B THEN          PRINT " THE GREATER NUMBER IS";A         ELSE         PRINT "THE GREATER NUMBER IS";B         END IF          END 3. Write a program that checks whether the supplied number is odd or even.          CLS          INPUT "ENTER ANY NUMBER";N          IF N MOD 2=0 THEN           PRINT "EVEN NUMBER"          ELSE           PRI