InstructionsTotal Questions: 10Total Minutes: 10This ExamTray Free Online Exam tests your C Programming Skills on C Arithmetic Operators, Precedence, Hierarchy, Associativity and displays Questions and Answers after finishing the exam. You can easily clear Competitive Exams and Job Interview Questions after attending this exam. Go through C Theory Notes on Arithmetic Operators before attempting this test. All the Best Challenge SCORE0 / 10Take This Exam 1*2*3*4*5*6*7*8*9*10*Q Buttons 1) What is the Priority among (*, /, %), (+, -) and (=) C Operators.? A) (*, /, %) > (+, -) < (=) B) (*, /, %) < (+, -) < (=) C) (*, /, %) > (+, -) > (=) D) (*, /, %) < (+, -) (+, -) == (=) 2) What is the output of the C statement.? int main() { int a=0; a = 4 + 4/2*5 + 20; printf("%d", a); return 0; } A) 40 B) 4 C) 34 D) 54 3) What is the output of the C Program.? int main() { int a=0; a = 10 + 5 * 2 * 8 / 2 + 4; printf("%d", a); return 0; } A) 124 B) 54 C) 23 D) 404 4) What is the output of the C Program.? int main() { int a=0; a = 4 + 5/2*10 + 5; printf("%d", a); return 0; } A) 29 B) 5 C) 4 D) 34 5) What is the output of the C Program.? int main() { int a=0; a = 10 + 2 * 12 /(3*2) + 5; printf("%d", a); return 0; } A) 31 B) 19 C) 11 D) 29 6) What is the output of the C Program.? int main() { int a=0; a = 10 + 2 * 12 / 3 * 2 + 5; printf("%d", a); return 0; } A) 19 B) 31 C) 11 D) 25 7) What is the output of the C Program.? int main() { float a=10.0; a = a % 3; printf("%f", a); return 0; } A) 0 B) 1 C) 1.000000 D) Compiler error. Ad 8) What is the output of the C Program.? int main() { float a=10.0; a = (int)a % 3; printf("%f", a); return 0; } A) 0 B) 1 C) 1.000000 D) Compiler Error. 9) What is the output of the C Program.? int main() { int a=0; a = 14%-5 - 2; printf("%d", a); return 0; } A) 0 B) -4 C) -2 D) 2 10) What is the output of the C Program.? int main() { int a= 3 + 5/2; printf("%d", a); return 0; } A) 3 B) 2 C) 5 D) Can not assign an expression to variable at the time of declaration. FINISH EXAM 1*2*3*4*5*6*7*8*9*10*PREVC Arithmetic Operators Online Test 1 NEXTC Conditional Statements Operators - Online Test 1 Certification Group ID 3858