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))
class sookshamas{ public static void main(String[ ] args) { int f1=3, f2=3; int f3=f1+f2; System.out.println("Sum="+f3); }}1234