Posts

QUARANTINE EXPERIENCE

                            EXPERIENCE OF QUARANTINE DAYS AND SEE CANCEL  IT Has been almost more than 3 months we Nepali people staying at our home due to CORONA VIRUS(COVID-19).It is one of the ongoing virus that has took the lives of many people.This virus was first seen in one of the doctor of china.It was out break on 31 December 2019.This virus has affected the whole world and now  Nepal has also been the victim of this virus.OVER 5000 people has been infected by this disease and many people has been dead. I think staying at home and having social distancing and staying clean and hygienic is the best way to overcome this disease. I have spent my quarantine days by taking online classes from teacher .Learning to cook new recipes and helping in household chores.As our SEE was postponed we covid batch were taking online classes for our exam.We took online classes for more than 2 months.After taking 2 month of classes for better result.But unfortunately we got to know on June 10

MY JOURNEY OF 11 YEARS WITH JM

Image
  Its been almost 11 years since I first entered this school. When I first entered this school holding my grandmother’s fingers with tears in my eyes. I still remember that day when I first entered principal sir’s office with my parents to give entrance. I started my journey with JM from grade U.K.G(2066 B.S). I still remember when I was walking through the down floor Durga Mam grabbed my hand and pulled inside class U.K.G. Since I was from a village, I didn’t know the rules and regulations of a boarding school. At that time one of my fellow friend Eunice Gurung helped me in studies as well as other activities. I learned speaking English slowly and adjusted in JM environment. After passing grade U.K.G, we were promoted to grade 1 and our class teacher was Roma mam. All the small children used to shiver hearing the name of Roma mam and Deepak sir. We were very afraid because our class teacher was Roma mam. But we were wrong. Roma mam was very polite and loving. She used to fe

PICNIC EXPERIENCE

The most awaited day of this session. The day for which we all students of grade 10 were waiting. 26th magh 2076 was the date we all students of grade 10 along with 10 teachers and 4 non-teaching staffs went to Tokha in total 58 people for picnic. We all were so much excited for that day. Specially we girls were so much excited about what dress to wear and what dress not to wear. We were divided into different groups for working . Before the picnic, we 14 students and 1 teacher Mr Deepak Shrestha who had been there with us throughout the whole preparation time went for shopping work, buying gifts and in buying the necessary things. We prepared some stuffs required for picnic 1 day earlier. Finally the day we all had been waiting since the first day grade 10 arrived. We woke up at 6:15 am and we got freshened up . Mr Deepak Shrestha our mentor (teacher) arrived at 6:45 am with one of our friend. We got ready and went down and helped to manage the necessary stuffs. As we were called be
Program to check whether the given no is Armstrong number or not using FUNCTION DECLARE FUNCTION ARM(N) CLS INPUT"ENTER ANY NUMBER";N A=P P=ARM IF A=P THEN PRINT"The given no is Armstrong"" ELSE PRINT"The given no is not Armstrong" END IF END FUNCTION ARM(N) S=0 WHILE N<>0 R=N MOD 10 S=S+R^3 N=N\10 WEND ARM=S END FUNCTION
QBASIC PROGRAM TO ERASE VOWEL FROM INPUT STRING USING FUNCTION. DECLARE FUNCTION DISPC$(S$) CLS INPUT"ENTER ANY STRING";S$ PRINT"AFTER ERASING VOWELS=";DISPC$(S$) END FUNCTION DISPC$(S$) FOR I=1 TO LEN(S$) B$=MID$(S$,I,1) C$=UCASE$(B$) IF C$<>"A" AND C$<>"E" AND C$<>"I" AND C$<>"O" AND C$<>"U" THEN D$=D$+B$ END IF DISPC$=D$ END FUNCTION
QBASIC PROGRAM TO FIND  FACTORIAL USING FUNCTION. DECLARE FUNCTION FACT(N0 CLS INPUT"ENTER ANY NUMBER";N PRINT"FACT=";FACT(N) END FUNCTION FACT(N) F=1 FOR I= 1 TO N F=F*I NEXT I PRINT"FACTORIAL=";F END SUB
QBASIC PROGRAM TO FIND 9,7,5...1 USING SUB. DECLARE SUB SERIES() CLS CALL SERIES END SUB SERIES() FOR I=9 TO 1 PRINT I NEXT I END SUB