public class Foo{public static void main(String[] args){try{return;}finally{System.out.println( "Finally" );}}}
What will be the output of the following C code?#include<stdio.h>int main(){int p = 1, q = 2, r = 3, s = 4, x;e = r + s = q * p;printf(%d, %d\n, x, s);}
#include<stdio.h>void main(){int a=4;switch (a%3){case 0:printf("Sookshmas");break;case 1:printf("Beyond knowing");break;case 2:printf("Play quiz");break;}}