Tuesday, December 26, 2017

Experience of tour

Experience of  Dhading
My experience of Dhading was very nice with my friends.At first ,I thought that it is waste of money but it was different from my thought.At first we went there at 4.00 clock .We had lunch and went to the river side just to see.Then it was time to go for an evening walk .We decided to go to the rural areas and for that we had to cross Trishuli bridge which seemed so much difficult but I hopefully did that. We again did photo session there. 














Next day ,we went to Trishuli river.We play with sand ,water and play race.After that we went and did and have breakfast.  













My friend did lot of fun while going to Dhading , but I did not do lot of fun because I was no filling well.
We return at 7.00 clock in night. 








Thursday, November 2, 2017

Dashain & Tihar

Photo
My experience on dashain
On the day of Ghatastapana,my elder brother kept grains like wheat, maize, barley and buck wheat in a dark room where there was absence of direct rays from the sun. My elder brother used to worship and water it only by holy water and used to take care of it for six days so that it could grow 5 to 6 inches long grasses which is called jamara .

On the 7th day (fulpati), we bought two goats and sacrificed one goat on that day.We sacrificed goat early in the morning at sharp 4:6 A.M.

Next day on Maha Asthami , we sacrificed another goat. Next day on Maha Nawami(9th day) we worshipped the machine like cycle, motorcycle and so on.

Eventually, the day came which I was eagerly waiting for. That day was 10th day of dashain ( bijaya dashami). I had spectacular experience on that day.This year the time to put Tika was at sharp 11:55A.M..I was enthusiastically waiting that time. Finally, the time came, we all family members assembled and put Tika and jamara as well as received inestimable blessings from the elder members of the family.Whether it was cleaning house, putting Tika, waking up early and worshipping good everyday, I had just splendid experience this time. All of our family members gathered and put Tika,jamara and receive blessings from the elders,it was an amazing opportunity for family gathering as well. On the day of dashain, people forgot all personal enmity between them and just gather and make the splendid moment on this day. 

Tihar
This time my tihar went just amazing right from the first day of tihar. This year, I also played  deusi and bhailo with my friends . We were altogether 5 . We were successful in acquiring Rs.5000. We did dance and also sang tihar song.As tihar has five days celebration, I would like to start my experience from the first day of tihar.

Kaag tihar
On this day , we didn't do much special, but we offered delicious food items to crows on a leaf.

Kukur tihar

On this day, I worshipped dog with Tika and Garland made with flowers. I gave it delish food stuffs to eat.

Laxmi puja

On this day, we cleaned our house. I was really very excited on this day. I plastered my hose with cow dung and red clay. I also made footprints of goddess Laxmi and also colourful rangoli with colored rice, dry flour and coloured sand in order to welcome wealth and prosperity.
We worshipped cows in the morning as well as we worshipped goddess Laxmi with paan, Bhai masala, and other beauty products and sweets and so on. We kept colourful lights in our home. In the night, we lightened oil lamps on doorways and windows. I also played deusi and bhailo with my four friends . We played bhailo up to 12:20o'clock. All paople appreciated our dance. We collected money as a tip from houses and shared the bounty among ourselves.

Bhai Tika

On the day of bhaitika, !e and my sister put Tika to our cousin brother as our brother is in abroad. We put Tika in his forehead, circled him by dripping oil on the floor from a copper pitcher and applied oil on his head as well as applied seven- colour Tika in his forhead. And he also performed same tradition with an exchange of gifts.





Tuesday, September 5, 2017

project

1. Write a program that asks in any subject and display the message "Result pass" if the input 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 two numbers and display the greater one.

CLS
INPUT "ENTER ENTER FIRST NUMBER"; A
INPUT "ENTER SECOND NUMBER"; B
IF A>B THEN
PRINT "THE GREATER NUMBER IS"; A
ELSE  
PRINT "THE GREATER NUMBER"; B
END IF 
END

3. Write a program that checks whether the supplied number is even or odd.

CLS
INPUT "ENTER FIRST NUMBER"; A
IF N MOD 2 = 0 THEN
PRINT "EVEN NUMBER'" 
ELSE
PRINT "ODD NUMBERS"
END IF
END

4. Write a program that asks two numbers and displays the difference between greater and smaller number.

CLS
INPUT "ENTER FIRST NUMBER"; A
INPUT "ENTER SECOND NUMBER"; B
IF A>B THEN
D = A - B
ELSE
D = B - A
END IF
PRINT "DIFFERENCE OF GREATER AND SMALLER NUMBER="; D
END


5. Write a program to print smallest among 3 numbers.

CLS
INPUT "ENTER ANY THREE NUMBERS" A, B, C
IF A<B AND B<C THEN
PRINT "THE SMALLEST NUMBER IS"; A
ELSEIF B<A AND B<C THEN
PRINT "THE SMALLEST NUMBER"; B
ELSE
PRINT "THE SMALLEST NUMBER IS"; C
END IF
END

6. Write a program that asks your age and tells whether you are eligible to vote or not. 

CLS
INPUT "ENTER YOUR AGE="; A
IF A>= 18 THEN
PRINT "YOU ARE ELIGIBLE TO VOTE"
ELSE
PRINT "YOU ARE NOT ELIGIBLE TO VOTE"
END IF
END


7. Write a program that asks marks in 3 subjects and display message pass or fail.

CLS
INPUT "ENTER MARKS IN THREE SUBJECT"; A, B, C
IF A>=40 AND B>=40 AND C>=40 THEN
PRINT "YOU ARE PASS"
ELSE
PRINT "YOU ARE FAIL"
END IF
END

8. Write a program using FOR....NEXT statement to print natural numbers up to 15.

CLS
FOR I = 1 TO 15
PRINT I
NEXT I
END


9. Write a program using FOR...NEXT statement to print first 10 odd numbers.

CLS
FOR I = 1 TO 20 STEP 2
PRINT I
NEXT I
END

10. Write a program using FOR...NEXT statement to print even numbers from 2 to 20.

CLS
FOR I = 2 TO 20 STEP 2
PRINT I
NEXT I
END

11. Write a program using FOR...NEXT statement to generate numbers 2, 5, 8, 11 ...32

CLS
FOR I = 2 TO 32 STEP 3
PRINT I
NEXT I
END

12. Write a program using FOR...NEXT to print; 100, 95, 90....5

CLS
PRINT I 100 TO 5 STEP -5
PRINT I
NEXT I
END


13. Write a program to print sum of even numbers from 2 to 10.

CLS
FOR I = 2 TO 10
S = S + I
NEXT I
PRINT "SUM="; S
END

14. Write a program to print sum of first 15 natural numbers.

CLS
FOR I = 1 TO 15
S = S + I
NEXT I
PRINT "SUM="; S
END




15. Write a program to print sum of odd numbers from 1 to 21.

CLS
FOR I = 1 TO 21 STEP 2
S = S + I
NEXT I
PRINT "SUM="; S
END


16. Write a program to first 10 natural numbers.

CLS
P = 1
FOR I = 1 TO 1O
P = P * I
NEXT I
PRINT "PRODUCT="; P
END

17. Write a program to print even numbers from 20 to 40.

CLS
FOR I = 20 TO 40 STEP 2
PRINT I
NEXT I
END


18. Write a program to print numbers; 1, 8, 27......100

CLS
FOR I = 1 TO 10
PRINT I^3
NEXT I
END

19. Write a program to generate multiplication table of input number.

CLS
INPUT "ENTER ANY NUMBER"; N
FOR I = 1 TO 10
PRINT N;"X"I;"="; N*I
NEXT I

END

Tuesday, August 15, 2017

Father's Day

My father name is Sitaram Dawadi. He is 39 years old.He is tall with black hair.He is the best father for me in the world .I love my father very much.He is very honest person.As father"s day is coming near,I want to write something about me and my father.                                                                                             

                                                                                   

  

Covid-19 Pandemic In Nepal

  Covid-19 Pandemic In Nepal Covid-19 Is the world wide pandemic in today's context.Not only Nepal but various country are suffering it....