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) +Y/Z c.





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) O 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 O 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"); o a. 50 b. 40 O c. 21 O d 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 O 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 b. 1 c. 2 d. 5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
