Question: Choose the correct expression in C language for the given expression: K = (x2 + Y)/Z a. K= (pow(X) + Y)/Z) b. K= pow(2,X) +

 Choose the correct expression in C language for the given expression:

K = (x2 + Y)/Z a. K= (pow(X) + Y)/Z) b. K=

pow(2,X) + Y/Z c. K= (pow(2,X) + Y/Z) d. K= (pow(X,2) +

Y)/Z A=10 B=5 C=3; X= A * C+B; Find the value of

X for the given expression. O a. 80 b. 33 O c.

35 d. 83 What should be the value of m for the

below code to print "WEST"? if(m!=10 && m>=20) printf("EAST"); else printf("WEST"); a.

50 b. 40 c. 21 d. 10 What should be the value

of x for the below code to print (OMAN"? if(x>10 && x%5==0)

printf("OMAN"); else printf("INDIA); a. 15 b. 10 c. 12 O d. 5

Choose the correct expression in C language for the given expression: K = (x2 + Y)/Z a. K= (pow(X) + Y)/Z) b. K= pow(2,X) + Y/Z c. K= (pow(2,X) + Y/Z) d. K= (pow(X,2) + Y)/Z A=10 B=5 C=3; X= A * C+B; Find the value of X for the given expression. O a. 80 b. 33 O c. 35 d. 83 What should be the value of m for the below code to print "WEST"? if(m!=10 && m>=20) printf("EAST"); else printf("WEST"); a. 50 b. 40 c. 21 d. 10 What should be the value of x for the below code to print (OMAN"? if(x>10 && x%5==0) printf("OMAN"); else printf("INDIA); a. 15 b. 10 c. 12 O d. 5 What is the value of z as per the following C code for x=5 and y=6? if (x>y) Z=x+y/2; else z=x/2; a. 8 O b. 1 c. 2 d. 5 What is the output of the below code snippet for x=4 and y=5? int z=x + y *x/x-y; if(z>5) printf("Good day"); else printf("Good Luck"); a. Good Luck O b. No output c. Good day O d. 4 What is the value in G as per the following given statements ? char fn[]="GRAPHICS"; G=strlen(fn); a. O O b. 2 b. 2 C. 8 O d. 6 d6 What is the output of the below code snippet? char course[ ] = {'MAT'/H/S/\0'}; printf("%c",course[2]); a. T b. M c. A d. H What is the value in string st2l of the below code snippet? char st1 [ ] ="TimesOf"; char st2 [1 ="Oman"; strcat(st1,st2); a. Times Of b. TimesOfOman c. Oman Times Of d. Oman What is the value in Las per the following given statements ? char name[]="STEVEN"; L=strlen(name); a. 6 O b. 7 O c. 4 4 d. 0

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!