Skip to main content

adhiko manoram nritya

The  act was shown to class 8,9 and 10 . We reached the dramas in at 1:20pm.   It was wonderful show.I think it was a very nicely presented youth act. According to us, it was shown to aware  to the student  not to Love in under age  and not to do what you want our small mistake make our life very difficult .We saw this act at Gaushala
it was a very interesting experience to be there.
we saw the act of a life time which taught so much.

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...