Saturday, February 22, 2020

My JM Experience






                             

                                       My JM Experience

 Starting high school is both exciting and scary for a lot of teens, especially if you are heading to a new school where you might not know a lot of people. I’m going to be honest: of all three years of high school, Grade 10 was definitely the worst for me. This isn’t because Grade 10 is actually bad, but because I focused all of my energy on things that – looking back – I’ve come to realize actually weren’t so important in the end, and that caused me a lot of unnecessary stress at the time. 

   i  came jagat mandir at class 2 .The very first day I still remeber entering jagat mandir , murari sir guided me towards the school.firstly I mate with mingma dorje and in Jm .I kept my bag and went for assembly. After assembly was over .The  first period  was of  khem sir .After few month I mate with my new friend barun thanet .He was good boy with good thought and idea . I Dont know how 3 yrs spend fast .


 had seen changes in the teaching learning of my school which has made my studies improve. JM has not only focused on the students academics but also in the sports. They have given their best to provide best facility to their students for their better result. Our school is not only based on theoretical  but also in practical which has been a great way to study and learn new things.The teachers are very friendly towards all the students. JM has build up my confidence to perform and face mass audience during the stage performance. 


But journey with jagat mandir school is very memorable and awesome . it  was the best moment.  

Saturday, February 15, 2020

experience of grade 10 pitnic (tohka)




   mч єхpєrєncє σn pítníc wíth grαdє 10 αnd 10 tєαchєr


my experience  with grade 10 and 18 students  to tokha was wonderful. we were very excited on that day.  this place tokha was choosen by our class teacher ' deepaksir '. on 26 magh , grade 10 students organized .  45  students and 10 teacher and 4 non-teaching guest were invited on that day. we all enjoyed the pitnic that is conducted  with lots of effort and awaited  since long time.


some student came school fast went to order bakery items. on saturday with deepak sir some student  went to archie gift store to get gift for teacher . some student went to bring raw material for pitninc .as in for me , i didnt engage myself in the preparation  of event  for pitnic. i woke late on that day and reached school at 8  o clock. many student had already came at 7 on school . as the very special , all classmates were looking astonishing  and excited . we rtravelled   over  there by  school bus. on that 45 minutes every one were excited and sang a song with their heart  on bus.  i felt so much happy on that day.  



we reached their at 10 : 0 clock . we all caried raw material and thing which we brought for pitnic and went to the place where we planned to stay. every one were happy . first we  seperated the gift and cooking raw material. some student took onion to wash and cut.  after that some student wash some dishes. every one help while making tea and breakfast. after some time tea and breakfast was ready every one made line to have breakfast. every one enjoyed breakfast . some student washed teacher plate after breakfast . then after some time we started to prepare lunch. we were cutting mushroom and some student were cutting chilly , onion, vegetables and other. our school sister and abishek cooked food. our principle sir also helped in cooking. when food was ready.



we started to play bingo  every one were happy while playing . our principle sir and some student won tea cup  on bingo game. after bingo game we made line for lunch . every one were very happy to try new things. we sat on the ground and had lunch. after lunch .we made some games for teacher . they have to blow ballon and blast by sitting on it. but deepak sir got tired so fast and slept on the ground , every teacher were running to win the game every teacher gave their best to win  gifts. after lunch we went for walk . we had so much fun. we had wonderful day. then we retuned to our spot. we all had afternoon lunch and collect all the thing which we brought there. we caried back to bus.we left from there at 6:00 clock. while returning back every one sang a song. we got stucked on traffic jam . every vehicle were hurry to go. abisekh and brother help to clear traffic. then we reached on school . girl were told to go  directly home . boys carried those raw materialand kept in canteen. and every on went thir own house. that day so memorable  which we will never forget . i had so wonderful day with my friends.

Friday, October 4, 2019

Qbasic programming


1)   Program to find greatest among 3 numbers using SUB

DECLARE SUB GREAT(A,B,C)
CLS
INPUT"ENTER FIRST NUMBER";A
INPUT"ENTER SECOND NUMBER";B
INPUT"ENTER THIRD NUMBER";C
CALL GREAT(A,B,C)
SUB

SUB GREAT(A,B,C)
IF A>B AND A>C THEN
PRINT"GREATEST NUMBER IS";A
ELSEIF B>A AND B>C THEN
PRINT"GREATEST NUMBER IS";B
ELSE
PRINT"GREATEST NUMBER IS";C
END IF
END SUB

2) Program to find area of box using FUNCTION
DECLARE FUNCTION AREA(L,B,H)
CLS 
INPUT"ENTER LENGTH";L
INPUT"ENTER BREADTH";B
INPUT"ENTER HEIGHT";H
PRINT"AREA OF BOX=";AREA(L,B,H)
END

FUNCTION AREA(L,B,H)
A=2*(L*B+B*H+L*H)
AREA=A
END FUNCTION




3)  Program to find area if 4 walls using FUNCTION
DECLARE FUNCTION AREA(L,B,H)
CLS
INPUT"ENTER LENGTH";L
INPUT"ENTER BREADTH";B
INPUT"ENTER HEIGHT";H
AR=AREA
PRINT"Area of 4 walls=";AREA(L,B,H)
END

FUNCTION AREA(L,B,H)
AREA=2*H*(L+B)
END FUNCTION

4)  DECLARE SUB CIRCLE(R)
CLS
INPUT"ENTER RADIUS";R
CALL CIRCLE(R)
END

SUB CIRCLE(R)
C=2*22/7*R
PRINT"CIRCUMFERENCE OF CIRCLE=";C
END SUB

5)  Program to find whether the given no. is divisible by 13 or not using SUB
DECLARE SUB CHECK(N)
CLS 
INPUT"ENTER ANY NUMBER";N
CALL CHECK(N)
END

SUB CHECK(N)
IF N MOD 13=0 THEN 
PRINT"DIVISIBLE BY 13"
ELSE
PRINT"NOT DIVISIBLE BY 13"
END IF
END SUB



6)  Program to find volume of box using FUNCTION
DECLARE FUNCTION VOL(L,B,H)
CLS
INPUT"ENTER LENGTH";L
INPUT"ENTER BREADTH";B
INPUT"ENTER HEIGHT";H
PRINT"VOLUME OF BOX=";VOL(L,B,H)
END

FUNCTION VOL(L,B,H)
V=L*B*H
VOL=V
END FUNCTION

7) Program to print only vowels from given word using SUB
DECLARE SUB DISPLAY(N)
CLS
INPUT"ENTER ANY WORD";N$
CALL DISPLAY(N$)
END

SUB DISPLAY(N$)
FOR I= 1 TO LEN(N$)
B$= MID$(N$,I,1)
C$= UCASE$(B$)
IF C$="A" OR C$="E" OR C$="I" OR C$="O" OR C$="U" THEN D$=D$+B$
NEXT I
PRINT"VOWELS="D$
END SUB

8)  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

9)  Program to find area of box using FUNCTION
DECLARE FUNCTION AREA(L,B,H)
CLS 
INPUT"ENTER LENGTH";L
INPUT"ENTER BREADTH";B
INPUT"ENTER HEIGHT";H
PRINT"AREA OF BOX=";AREA(L,B,H)
END

FUNCTION AREA(L,B,H)
A=2*(L*B+B*H+L*H)
AREA=A
END FUNCTION


10) 

Program to find area if 4 walls using FUNCTION

DECLARE FUNCTION AREA(L,B,H)
CLS
INPUT"ENTER LENGTH";L
INPUT"ENTER BREADTH";B
INPUT"ENTER HEIGHT";H
AR=AREA
PRINT"Area of 4 walls=";AREA(L,B,H)
END

FUNCTION AREA(L,B,H)
AREA=2*H*(L+B)
END FUNCTION

11) 

Program to find circumference of circle using SUB

DECLARE SUB CIRCLE(R)
CLS
INPUT"ENTER RADIUS";R
CALL CIRCLE(R)
END

SUB CIRCLE(R)
C=2*22/7*R
PRINT"CIRCUMFERENCE OF CIRCLE=";C
END SUB
12)

Program to find whether the given no. is divisible by 13 or not using SUB

DECLARE SUB CHECK(N)
CLS 
INPUT"ENTER ANY NUMBER";N
CALL CHECK(N)
END

SUB CHECK(N)
IF N MOD 13=0 THEN 
PRINT"DIVISIBLE BY 13"
ELSE
PRINT"NOT DIVISIBLE BY 13"
END IF
END SUB

13)




Program to find volume of box using FUNCTION

DECLARE FUNCTION VOL(L,B,H)
CLS
INPUT"ENTER LENGTH";L
INPUT"ENTER BREADTH";B
INPUT"ENTER HEIGHT";H
PRINT"VOLUME OF BOX=";VOL(L,B,H)
END

FUNCTION VOL(L,B,H)
V=L*B*H
VOL=V
END FUNCTION
14)

Program to print only vowels from given word using SUB

DECLARE SUB DISPLAY(N)
CLS
INPUT"ENTER ANY WORD";N$
CALL DISPLAY(N$)
END

SUB DISPLAY(N$)
FOR I= 1 TO LEN(N$)
B$= MID$(N$,I,1)
C$= UCASE$(B$)
IF C$="A" OR C$="E" OR C$="I" OR C$="O" OR C$="U" THEN D$=D$+B$
NEXT I
PRINT"VOWELS="D$
END SUB
15)
Program to print only vowels from given word using SUB
DECLARE SUB DISPLAY(N)
CLS
INPUT"ENTER ANY WORD";N$
CALL DISPLAY(N$)
END

SUB DISPLAY(N$)
FOR I= 1 TO LEN(N$)
B$= MID$(N$,I,1)
C$= UCASE$(B$)
IF C$="A" OR C$="E" OR C$="I" OR C$="O" OR C$="U" THEN D$=D$+B$
NEXT I
PRINT"VOWELS="D$
END SUB
16)

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
17)

Program to print simple interest using FUNCTION

DECLARE FUNCTION SIMPLE(P,T,R)
CLS
INPUT"ENTER PRINCIPLE";P
INPUT"ENTER TIME"T
INPUT"ENTER RATE";R
PRINT"Simple Interest=";SIMPLE(P,T,R)
END

FUNCTION SIMPLE(P,T,R)
S=(P*T*R)/100
SIMPLE=S
END FUNCTION
18)

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
19)

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
20)

Program to find the factors of a number using FUNCTION

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

FUNCTION FACT(N)
FOR I= 1 TO N
IF N MOD I=0 THEN
PRINT I
NEXT I
END FUNCTION

Saturday, August 31, 2019

My father


   
 
    My Father


my name is Sonam Sherpa. I live in Chabahil , Lampokhari . I am 15 years old . I study in grade 9. my  father name is mingma  shalaka .  He is 43 years old. he works in Afghanistan. He work so hard. My father is very kind-hearted person and my real hero and best 
friend . He tells me that he discuss his all life  events to me to give experience  and take right  steps in t future.  He w to make me a  good  person in the life and  most importantly  a successful p   He is t person who  always helps  the needy  people in  anywhere  on the  way. He teaches me about how  tob  fit,  healthy, happy  and a peaceful  person all through the life. He is the good adviser in m family, every family member takes advice  from him whenever they get problem. He  is the head of the family and always  takes first seat while eating  food at dining table

Experience of election

          Experience of election commission
On 3rd bhadra students of grade 10 were  taken to the election commission. To learn about the election process. we were told to you arrive in the school by 9:45 and after that . After the the arrival of all student we all line income down on ground. Then we slowly move to bus to get for our destiny. After your inter in bus. Driver started the bus and move from there at 10 .29. on the way we saw many bus  bike at jam. The way where going was not jam. We had so much fun in bus .

murali sir told us to not to behave like monkey . Sir told us many things. We reached over there at 10:45 and one lady welcome us over there and told about end so as many years ago ballot paper box and many more. They separated into two groups section a and section b. Section A  went  to visual lab  and b were playing quiz games about election. In visual how to put to put anything when it was established. Din section B went to play games like true or false etc. They had audio and visual lab over there .

 We had so many phone and many new things of election. One one mam give us long speech about election. That was so boring that half an hour students went to sleep. We were forced to listen speech. I was feeling so bored that I wanted to go to washroom and wash my face. Then then after while speech got over and then we  tooks 15 minutes break. Then mam told about  the ballot machine. Then mam told we will get chance to to use bollat machine. Then mam told US student to stand for Captain post. Three student of our class stand.  First day give some speech about what they will do when they will get the post of the captain. 


everyone was so happy that they are going to use ballot machine for the first time. Everyone was too excited to use ballot machine. We all got line up get ready to vote for 3 candidates. Everyone gave their vote  to the right candidate. We all give them vote  and the winner was simson. You are so happy for our support and love. Then we came in line to our bus. Then we went to bus to go to school. Thank you.



Sunday, August 18, 2019

Drugs



On Shrawan 26,2076. We students of grade 10 attended a class in which we were counseled about the drug and alcohol abuse by police team.This was our second class by police team but this time it was all about  drug abuse.Generally,we were known about drug abuse before too from various books but we actually have come to know about various facts about drugs in more intellectual manner regarding it's causes and intricacies.

The class was really interesting due the use of multimedia.We came to know the types of drugs and it's nature.The class was really informative as the attractive visual representation kept us engaged in learning process about drug abuse.policeman  even shared his story about how he was persuaded to involve in such basic drug abuse  in his childhood.And from his story,we even learnt that  to become cool is also one of the factors of drug abuse.We were also shown some of the pictures which were  all about the consequences one has to face after the excessive usage of drugs which motivated us to stay away from the use of drugs.The presentation had also some videos which indicated that how one neglect his Carrier and family due to the usage of drugs.We were also awared that peer pressure and negligence for family and society ethics are also the causes of drug abuse which ruins our studies,carrier and prestige in the society.

We gain knowledge and ideas from this classwhich  was really informative. I would like to thank our principal sir for providing this class. We learnd that we should not involve in drug and say no to drugs .



Sunday, July 21, 2019

Experience of hike

Hello It's me sonam to share my experience on the hike organized by our school on 20th July. We moved from school around 7:30 am.
 

We have been organizing mini trek from  

Changu Narayan Temple to Nagarkot. This is the shortest trek around Kathmandu Valley and thus it does not require high level of physical fitness. Trek from    

Changu Narayan Templet t

o Nagarkot continues from Chisapani. We will drive from Kathmandu to Sundarijal and then take short hike . From Sundarijal, we will climb the stairs and walk along pipes that carry water to Kathmandu citizens to the entry point of Shivpuri National Park. We will cross the verdant forest and arrive at Tamang village of Mulkharka. Crossing the small Bhanjyang, we will make it .

We reached our first destination around 10 which was the Changu Narayan Temple. We were amazed by the beauty of the temple it is said that the Temple is old than than The USA. It is believed to be made by the king Mandev. Then after 30 minutes we moved on to the Trisuli Dada which was around 45 minutes walk. We enjoyed the scenery of the Kathmandu valley from the top. There were so many buildings but very less trees.

After that we stopped in a place where there was a drinking water we all filled up our bottles washed our face and rest a while while resting we share all the photo we heaved clicked together. Then we went through the road of telkot and walked a quite downhill.

Then we reached the Entrance of the Mohan Pokhari there was a small waterfall then we climed up the way was toward the stone were small the soil was slippery and we had a hard time going up.

Then we rest for sometime waiting for others to gather up then we had our tiffing all together then we went by playing with water went down. To the small water fall by this time the rain was going on so going down was more difficult then climbing we nearly slipped.

We reached our first destination around 10 which was the Changu Narayan Temple. We were amazed by the beauty of the temple it is said that the Temple is old than than The USA. 



Then we rest for sometime waiting for others to gather up then we had our tiffing all together then we went by playing with water went down. To the small water fall by this time the ,rain was going on so going down was more difficult then climbing we nearly slipped. But we enjoyed the difficult times as we were enjoying such a walking experience.