Skip to main content


KOSHISH EDUCATORS’ FORUM                  
Inter School Competition
Classes VIII & IX  : MS-Publisher    Design a Cover Page

Topic: Design a cover page for India-Makathon magazine for the International market


CLASS X: Blog sites


Topic: Make a blog on PM’s call for make in India


CLASS X: QUIZ                    I.T. Quiz


Syllabus for the Quiz is Fundamentals of Computer, Generation of Computer, MS-Office, Internet and Latest in I.T. (current affairs)

Comments

Popular posts from this blog

operator s in Python

function solution

1. // to find areas using functions.using switch import java.io.*; class m1 { double area(double r) {   return(3.14*r*r); } int area(int s) {   return(s*s); } double area(double l, double b) {   return(l*b); } public static void main(String args[]) throws IOException {   m1 ob= new m1(); double p; int q; double w; BufferedReader input= new BufferedReader(new InputStreamReader(System.in)); System.out.println("*** MAIN MENU ***"); System.out.println("1. Area of Circle"); System.out.println("2. Area of Square"); System.out.println("3. Area of Rectangle"); System.out.println("4. Exit"); System.out.println("Enter Choice(1-4)"); int ch=Integer.parseInt(input.readLine()); switch(ch) { case 1: System.out.println("Enter the radius"); double r=Double.parseDouble(input.readLine()); p=ob.area(r); System.out.println("Area of Circle"+p); brea...