class variable_scope{public static void main(String args[]){int x;x = 5;{int y = 6;System.out.print(x + " " + y);}System.out.println(x + " " + y);}}
#include<stdio.h>int main(){int y=55;const int x++=y;printf("%d\n", x);return 0;}
void f(char*s,char*t){if(strlen(s) strlen(t))printf("%d",strlen(s));elseprintf("%d",strlen(t));}void main(){char *x="HELLO";char *y="COMPUTERS";f(x,y);}
What will be the output of the following code ?numbers = (4, 7, 19, 2, 89, 45, 72, 22)sorted_numbers = sorted(numbers)even = lambda a: a % 2 == 0even_numbers = filter(even, sorted_numbers)print(type(even_numbers))