Saturday, February 22, 2020

Journey with jagat mandir

        My journey with Jagat Mandir School

My first day and my first step in jagat mandir was on 2067. On the first day I came with my brother and my mom. Before coming to class Binu mam took our written and oral test of my and my brother. She asked me a table of 2 and some spellings. She was very friendly. I was at the age of 7 when I came to Jagat Mandir School.

My  first day in class 1 went very amazingly. All the days went very enjoyingly with different teachers and friends. Slowly we grown up and we were taken to big big classes. Now we are in class 10. I experienced a different teaching and learning process with different teachers.
There is no any favourite teacher because all the teachers are equal for me. Now we are at the end our school session. All the days were very memorable for me. Every situation and every moment from class 1 to till now is very amazing. There are some moment where I had face several problems. But in every situation teachers were with me to solve my problem. They had never said no to help any students. "A truly special teachers are very wise, and sees tomorrow in every children's eyes." Yes I agree that I do lazy in study but I had learnt how to respect teachers and elders.

A school is important because it teaches about the world around us and prepares us with the tools that is needed in future success. Without teachers, we cannot do anything. As we say that school is second home and teachers are the second family. Teachers are the one who have shown me a proper path for my future and they are the one who have gave me a proper guidance till now. Deepak sir, khem sir, Mahendra sir and other teachers are the example of best teachers ever I have got. They are the one who taught about the importance of education, friends and family. Due to Deepak sir I am able to know the value of teamwork and importance of friends. From my childhood to now I have found many kind of friends. I got many friends who were with me but Ankit and Sachi are the one who are there always with me. They are the one who gave me a lot of counseling and built my self confidence. There are many worst moment in my school session.
The worst moment from my childhood is that when I was in class 9 we were to taken for educational tour for 5 days. After returning from there we were told to do blog about experience of tour but due to some technical problem I was not able to complete my task and I was punished by Deepak sir infront of my friends.

But forgetting all those moments and remembering those memories which I experienced from childhood is very precious. When I starts to think about my childhood memory with my friend I feel very relax. I would like to thank to all the teachers, school staffs and all brother and sister who helped me for showing me a right path and I would like to thanks specially to our gate brother because he works very hard for our school. At last I want to say that jagat mandir is the best school in my point of view because here students not only learn the things from book but also they are taught outer knowledge that helps in a students future.

 My journey with Jagat mandir is very wonderful because I have got a best teachers who taught me everything. I am writing this due to knowledge given by my teachers. So I want to thanks to every teachers and school staffs.

                        Thank you!!!

Saturday, February 15, 2020

Experience of picnic

                    MY EXPERIENCE ON PICNIC

Every year the students of class 10 organizes picnic with teachers. Same like other students of class 10 we also organized picnic. We all students of class were very excited for that day. We were already being informed from a month ago. We all collected 1500 rupees for picnic.

We were very excited for a day. Before some days of picnic we divided groups, we made plans to do different work and so on. As a plan some students went to buy gifts, vegetables and all . Actually I didn't went for shopping because I was hosteller and that day I need to go home so I didn't went for shopping. As a plan they bought all the required things for picnic. Finally the day came,we all were very excited. We all students gathered on school on 7.30. Me and Furwa went to take rasbari and  lalmohan  in my shop. After that we returned to school all the required things were already managed and kept in bus. We went to bus and started our journey from 8.15 am . We all were unknown of the place that we were been taking. We all was so excited to know where we were being taking. The bus stopped, we all were looking here and there to know about exact place . I looked the board of one shop and I knew the place. The place name was tokha. We came out from bus taking one one utensils or vegetables. I took a plastic of tomatoes and came out of bus. Finally we reached to our Destination. After reaching the place we all worked as a plan .Me and aakriti went to wash a tomatoes and onions. After washing onion we helped to sister to wash all the utensils. After this we made our breakfast . We all students made a line to have breakfast. After taking breakfast we too some photos with teachers and friends. We took rest for a time. After taking rest. We played different games like Bingo and all . There were 5 round in bingo. On that 5 round Khem sir,Rajan sir ,luisha,Laxmi and other won the game . After playing the games, some of the students were helping to make morning rice and other were clicking photos. After having rice,we all students made teachers to play game. After playing games we had our launch and went for hiking. We walked through jungle root. We visited the temples and all. After worshipping we took some group photos with teachers and returned to the place where we started our hike . As Deepak sir and our plan , all students and teachers sang the sung from the starting alphabet of there name .After singing the songs we danced a lot in different song. In this way, the time was spending. After singing,dancing and photo session we worked as a team and made dinner. After having the dinner, we cleaned and washed all utensils. After all this work, we returned to the bus and returned back. We enjoyed a lot in bus too. We sang a song danced in bus also. When all were dancing the bus was moving itself due to movement of us. Finally we reached to the school, we took out all the utensils and remaining food. The day went very joyfully. I wasn't experiencedsuch a wonderful day and wonderful picnic ever in my life.

I would like to thank to our school administrator, Deepak sir and khem sir to make our picnic successful. A part from study we learned teamwork. We are able to know about the value of friends and teachers. The picnic went successfuly we all enjoyed a lot on that day.

                           Thank you

Thursday, October 31, 2019

Wap to display 1,2,3,5,8, up to 13th term

DECLARE SUB SERIES ( )
CLS
CALL SERIES
END

SUB SERIES
A = 1
B = 2
FOR I = 1 TO 13
PRINT A;
C = A+B
A = B
B = C
NEXT I
END SUB

Wap to check whether the given number is perfect square or not

DECLARE FUNCTION PERFECT (S)
CLS
INPUT "ENTER ANY NUMBER"; N
S = SQR(N)
PR = PERFECT (S)
IF PR = S THEN
PRINT "PERFECT SQUARE"
ELSE
PRINT "NOT PERFECT SQUARE"
END IF
END

FUNCTION PERFECT (S)
PERFECT = INT (S)
END FUNCTION

Wap to find whether the given number is positive negative or zero

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

SUB CHECK(N)
IF N>0  THEN
PRINT"NUMBER IS POSITIVE"
ELSE IF N<0 THEN
PRINT"NUMBER IS NEGATIVE"
ELSE
PRINT"NUMBER IS NEUTRAL"
END IF
END SUB

Wap to erase vowels from given string

DECLARE FUNCTION ERA(A$)
CLS
INPUT"ENTER ANY STRING";A$
PRINT"STRING WITHOUT VOWELS =";ERA(A$)
END

FUNCTION ERA(A$)
FOR I = 1 TO LEN (A$)
B$=MID$(A$,I,1)
C$=UCASE$(B$)
IF C$<>"A" AND C$<>'E" AND C$<>"I" AND C$<>"O" AND C$<>"U" THEN D$=D$+C$
END IF
NEXT I
ERA=D$
END FUNCTION

Wap to check the character is capital or small

DECLARE FUNCTION CHECK$(A$)
CLS
INPUT"ENTER ANY CHARACTER";A$
PRINT"THE ENTERED CHARATER IS"; CHECK$(C$)
END

FUNCTION CHECK$(A$)
C = ASC(A$)
IF C>=65 AND C<=91 THEN
CHECK$="UPPER CASE"
ELSEIF C>=97 AND C<=122 THEN
CHECK$="LOWER CASE"
ELSE 
CHTR$="NOT A CHARACTER"
END IF
END FUNCTION

Journey with jagat mandir

        My journey with Jagat Mandir School My first day and my first step in jagat mandir was on 2067. On the first day I came with my ...