Total Pageviews

Friday, March 13, 2020

JOURNEY WITH JAGAT MANDIR

Almost 13 years ago i joined this very school. As a kid i never felt like going to school. I'd cry so loud when it w as the time to go to school. My mother would take me to the bus stop. And from the bus stop our conductor of that time Tashi brother would take me to the bus and then to the school. Tashi brother was my favorite brother i still meet him sometimes. Little did I know that despite all those cries I would make memories that would remain on my heart forever.

I first joined this school on playgroup. I was about 2 and a half years when i joined this school on 2064 B.S. i was bad on studies during my childhood. I never enjoyed studying. I started improving my studies from grade 1 and again worsened it from grade 7. I don't remember much of my childhood. Dhanna mam during grade nursery, Masi mam on L.K.G. Durga mam on U.K.G and Manita mam on grade 1, they were my favorite teachers. I was always afraid of Roma mam. But she was not as agressive as her appearance. She had that loving and caring nature somewhere in her heart which she did not express very often. Once she even fed us cheese. That was the very first time I tasted cheese in my life. One day Albert had brought a snowman eraser and Albert and I were playing that eraser at that very time Roma mam saw us playing that eraser. Albert hurriedly hid the eraser on the back pocket of his pants. Roma mam beat me on my hands with a bamboo stick and hit albert on his butt after she went, he took out the eraser and it was broken into two pieces. We felt bat at that moment but remembering it now it feels like it was funny. I remember the  beating i got from Thakur sir on grade 2. Since grade 6, I had many fights because of misunderstandings between my friends and me. The most memorable moment for me was the 5 days 4 nights tour of grade 9. I've made lots of memories during that 5 days 4 nights tour. Playing the peace point cup and bringing the trophy for the school. I won't forget that.

Despite all those happiness, sadness, fights, punishments i've grown this big in the environment of this school. I would like to thank my teachers who have provided me knowledge, love, care and supported me. 13 years on this very school has taught me many things. I am thankful for everything.

Saturday, February 15, 2020

PICNIC EXPERIENCE

26thmagh 2076, this was the date that was in the mind of every tenth graders. We, grade 10 students along with 10 teachers and 4 non- teaching staffs, 58 in total went to Tokha for picnic. Every grade 10 students were excited. Our class was divided into various groups for working. A day before picnic, 14 of our friends and our class teacher Deepak sir made preparations for picnic. They went shopping for gifts, vegetables and all the necessary stuffs. Some of the stuffs were prepared 1 day earlier.

The next day, the day which was the most awaited arrived!! We woke up at 6:30 am and got ready. Deepak sir was the first to arrive. We got ready, and went down to help him gather the necessary materials. We were told to arrive by 7:30 am but as we say "Nepali time" nobody arrived on time except Dorje and Albert. We gathered the plates, glasses, spoons, food stuffs and speakers in the bus. At around 8:15 am, we moved from our school to our destination. The journey towards the destination was quite enjoyable. We sang, danced and enjoyed a lot. We reached our destination at almost 9:20 am. We carried the materials from bus to the picnic spot. It was a 3-5 minutes walk. We managed the tables and gas stoves. Then, the preparation of breakfast started. We cleaned the plates, washed the fruits and vegetables. We had our breakfast, washed our own plates and started lingering here and there. We had planned to organize some games for the teachers. The teachers played the games that we had arranged for them. We started clicking pictures, ate fruits and were enjoying ourselves. Then after some time, following the previous trend, we were made to play bingo. The teachers were really lucky and some of our friends too. As for me, i was one heck of an unlucky boy. After the game, snacks was served. Then we made preparations for dinner. We marinated the chicken, mutton, cut the vegetables and went for a short walk while sister continued cooking. We enjoyed walking in the woods. We clicked some group photos and then we returned to the picnic spot. Then we gathered around and distributed gifts to the teaching and non-teaching staffs as a token of love from the students of 24th batch. During the gift distribution, our EPH teacher Khem sir was pranked. Then we had almost come to the last moment of the picnic. We danced,ate and had fun. Then we ate desserts. We washed the dishes and managed the materials and kept it in the bus. We left the spot at 5:00 pm. We sang song and danced on the way back home.

I would like to thank my teachers and friends for co-operating and making this picnic possible. And i would like to thank Deepak sir for his extra hardwork and dedication to make this picnic possible.

Tuesday, October 1, 2019

Program to check whether the given word is palindrome string or not using FUNCTION

DECLARE FUNCTION PAL$(N$)
CLS
INPUT"ENTER ANY WORD";N$
P$=PAL$(N$)
IF N$=P$ THEN
PRINT"The given word is palindrome"
ELSE
PRINT"The given word is not palindrome"
END

FUNCTION PAL$(N$)
FOR I= LEN$(N$) TO 1 STEP -1
B$= MID$(N$,I,1)
C$=C$+B$
NEXT I
PAL$=C$
END FUNCITON

Program to check whether the given no is palindrome or not using FUNCTION

DECLARE FUNCTION PAL(N)
CLS
INPUT"ENTER ANY NUMBER";N
P=PAL((N))
IF N=P THEN
PRINT"The given no is palindrome"
ELSE
PRINT"The given no is not palindrome"
END IF
END

FUNCTION PAL(N)
S=0
WHILE N<>0
R= N MOD 10
S=S*10+R
N=N\10
WEND
PAL=S
END FUNCTION

Program to calculate distance using FUNCTION

DECLARE FUNCTION DISTANCE(A,U,T)
CLS
INPUT"ENTER ACCELERATION",A
INPUT"ENTER INITIAL VELOCITY";U
INPUT"ENTER TIME";T
PRINT"DISTANCE TRAVELLED=";DISTANCE(A,U,T)
END

FUNCTION DISTANCE(A,U,T)
S=U*T+1/2*A*T^2
DISTANCE=S
END FUNCTION

Program to find factorial using FUNCTION

DECLARE FUNCTION FACT(N)
CLS
INPUT"ENTER ANY NUMBER";N
PRINT"FACTORIAL=";FACT(N)
END

FUNCTION FACT(N)
F=1
FOR I= 1 TO N
F=F*I
NEXT I
FACT=F
END FUNCTION

Program to print 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