Posts

Hello it's me Monik Maharjan. Today I'm going to share my exper ience of not going tour. I spent my whole day by playing online games with my friends. It was really a enjoyable moment for me. On Poush18th our second term examination finished and from 19th Poush our winter vacation started. Then, I went to play football around 3 pm and came back home around 6pm. On the next day, I went to my friend house and played freefire and watched movie whole the day.This way my holiday ended at home  THANKYOU
Image
Life is to short enjoy your life today because yesterday has gone tomorrow may never come.We should have to do everything in our life.So,we get very good opportunity  to visit new places to our friends and to our teachers in the occasion of visit Nepal 2020. It celebrate in every 10 years in Nepal.We had 4 night 5 days an educational tour in from 2076/09/19 to 2076/09/23. We were all together 30 student with four teachers Deepak sir, Bijay sir, Murari sir, and Sabina mam.It was very  best memorable tour. We got a shedule of the tour and according to shedule we visit the places. 1st Day: Kathmandu to Sauraha (Sauraha night saty). 2nd Day: Sauraha to Ghandruk (Night saty at Ghandruk). 3rd Day: Ghandruk to Pokhara (Night saty at Pokhara). 4th Day: Pokhara visiting and night saty at Bandipur. 5th day: Back to Kathmandu(Observing Siddha gufa on the way). 1st day (Kathmandu to Sauraha):                                                         Sir told that we should have
CLS INPUT "Enter any three number"; A, B, C IF A>B AND A>C THEN PRINT "The greates 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
CLS INPUT "Enter any number"; N S = 0 WHILE N<> 0 R = N MOD 10 S = S+R N = N\10 WEND PRINT "Sum of didits="; S END
CLS INPUT "Enter any number'; N P = 1 WHILE N<> 0 R = N MOD 10 P = P*R N = N\10 WEND PRINT "Product of digits="; P END
CLS INPUT "Enter any number"; N S = 0 WHILE N<> 0 R = N MOD 10 S = S*10+R N = N\10 WEND PRINT "Reverse of digits="; S END
CLS INPUT "Enter any number"; N A = N  S = 0 WHILE N <> 0 R = N MOD 10 S = S*10+R N = N\10 WEND IF A= S THEN PRINT " The number is palindrome" ELSE PRINT "The number is not palindrome" END IF END