class Output{public static void main(String args[]){double x = 2.0;double y = 2.0;double z = Math.pow( x, y );System.out.print(z);}}
#include<stdio.h>int main(){int a=5, b, c, d;b=++a;c=a++;d=++a;printf("%d",a-4);return 0;}
main(){ int i = 0; label: cout << "Sookshmas"; i++; if(i < 3){ goto label; }}
What is the output of the following?mylist = ['geeks', 'forgeeks']for i in mylist:i.upper()print(mylist)