Predict the output?#includestdio.hvoid main(){int i=32, j=0*20 ,k, l, m;k=i | j;l=i & j;m=k ^l;printf("%d%d%d%d%d",i,j,k,l,m);}
What will be the output of this python code
import mathdef fun (a,b):b= math.pow(a,b)print(b)Fun(4,2)
Find the output of the following program.public class Solution{public static void main(String[] args){short x = 10;x = x * 5;System.out.print(x);}
What is output of below program?int main(){int i,j,k,count;count=0;for(i=0;i5;i++){for(j=0;j5;j++){count++;}}printf("%d",count);return 0;}
import java.util.*;public class first {public static void main(String arg[]) {int num1, num2, sum;Scanner a = new Scanner(System.in);System.out.println("enter the numbers");num1 = a.nextInt();num2 = a.nextInt();sum = num1 + num2;System.out.println(sum);}}
#include stdio.hvoid main(){float x = 0.1;if (x == 0.1)printf(" Davangere");elseprintf("belagavi");}