class Output{public static void main(String args[]){double x = 2.0;double y = 3.0;double z = Math.pow( x, y );System.out.print(z);}}
public static void main(String[] args){int ch=1,a=10,b=0;switch(ch){case 1 : System.out.println(a+b);case 2 : System.out.println(a-b);case 3 : System.out.println(a/b);default :System.out.println("Invalid");}}
Class parent ():What will be the output of this python codedef __ init__(self):Self .value = " sookshamas"def show (self):Print ("self.value")Class child(parent)def __ init__(self)self.value=" beyond knowing"def show ( self):Print (self.value)