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)