C Programming Multiple Choice Questions (MCQ) | IT Developer <?php echo $page_title; ?>
IT Developer

C Programming Multiple Choice Questions (MCQ)

C Programming Multiple Choice Questions (MCQ) - Set 12



Share with a Friend

Multiple Choice Questions


C Programming - Multiple Choice Questions (MCQ) - Set 12

56. Which of the following operator is used to select a member of a structure variable
A). .(dot)
B). ,(comma)
C). : (colon)
D). ;(semicolon)
View Answer
Correct: A




57. What will be the value of variable a?
 int a = 6; 
 a = ~a; 
A). -6
B). 9
C). -7
D). 6
View Answer
Correct: C




58. An arithmetic expression without parenthesis will be evaluated from left to right
A). True
B). False
View Answer
Correct: A




59. In C programming, the statement a=a+1 and a+=1 will produce same result
A). True
B). False
View Answer
Correct: A




60. Within an expression, __________ precedence operators will be evaluated first
A). Similar
B). Higher
C). Lower
D). None of these
View Answer
Correct: B