Skip to main content

Hiking on champadevi

It was a great fun going to champadevi with my friends. We gathered in the school in about 7:30.then we played in the school. After our teacher came, after few minutes we left from school. It was about 8:30 when we left from school and we arrived there in about 9:00. They we started to move forward in our hiking. We made a group and started moving with our friends. It played songs during walking and had a lot of fun. Then we eat food in the way. We clicked some photos of the view in that place. Then after we made made our way back to our bus and left from champadevi. It was a great experience in our hiking.
                          Thank you!!

Comments

Popular posts from this blog

My father

My father name is sushil poudel. He is the one who helps me all the time. He is the backbone of our family. He is working as hard as he can to develop our family. He was born in 2032. He is 43 years old. He helps us anytime when we are in trouble. He supports me very much. I am very happy that i got a father like him that supports me in each and every condition of my life.  I think i am the luckiest person in the world that i got a father like him. I

Experience of police class

It was great opportunity given to us to learn about law, rules and many other things. We were taught about illeagle activities, cyber crime, etc. By a respected policemen. Getting education about these things will help us in future. There are many illeagle activities happening in our country so we must try to stop. We learned about effects of drug addiction, effects of smoking, rules and other different topics. It was very fun class and we learned about do many things that we should do and not do.  I am very interested for our next class. Hope we'll have our class very soon. Thank you!!

Qbasic Programs

1. WAP to find the area of rectangle. CLS INPUT "ENTER LENGTH" ; L INPUT "ENTER BREADTH" ; B AREA = L * B PRINT "AREA OF RECTANGLE IS =" ; AREA END 2.WAP to display the area of circle. CLS INPUT "ENTER RADIUS" ; R A = 22/7 * R ^ 2 PRINT "AREA IF CIRCLE" ; A END 3. WAP to find the area of square. CLS INPUT "ENTER LENGTH"; L A = L ^ 2 PRINT "AREA OF SQUARE =" ; A END 4. WAP to find the area of triangle. CLS INPUT "ENTER BASE" ; B INPUT "ENTER HEIGHT"; H A = 1/2 * B * H PRINT "AREA OF TRIANGLE=";  A END 5. WAP to find the volume of cylinder. CLS INPUT "ENTER RADIUS" ; R INPUT "ENTER HEIGHT" ; H V = 22/7 * R ^ 2 * H PRINT "VOLUME OF CYLINDER=" ; V END 6. WAP to input percentage and display pass or fail. CLS INPUT "ENTER PERCENTAGE"; P IF P > = 40 THEN PRINT "PASS" ELSE PRINT "FAIL" END...