adplus-dvertising

Welcome to the Data Types,Operators and Expressions in C MCQs Page

Dive deep into the fascinating world of Data Types,Operators and Expressions in C with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Data Types,Operators and Expressions in C, a crucial aspect of C Programming. In this section, you will encounter a diverse range of MCQs that cover various aspects of Data Types,Operators and Expressions in C, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within C Programming.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Data Types,Operators and Expressions in C. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of C Programming.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Data Types,Operators and Expressions in C. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Data Types,Operators and Expressions in C MCQs | Page 24 of 66

Q231.
Which of the following operator takes only integer operands?

a.

+

b.

*

c.

/

d.

%

Discuss
Answer: (d).%
Q232.
In an expression involving || operator, evaluation

I. Will be stopped if one of its components evaluates to false
II. Will be stopped if one of its components evaluates to true
III. Takes place from right to left
IV. Takes place from left to right
Discuss
Answer: (d).II and IV
Q233.
Determine output:
void main()
{
      int i=0, j=1, k=2, m;
      m = i++ || j++ || k++;
      printf("%d %d %d %d", m, i, j, k);
}
Discuss
Answer: (b).1 1 2 2
Q234.
Determine output:
void main()
{
      int c = - -2; 
      printf("c=%d", c); 
}
Discuss
Answer: (c).2
Q235.
Determine output:
void main()
{ 
      int i=10; 
      i = !i>14; 
      printf("i=%d", i); 
}
Discuss
Answer: (c).0
Q236.
In C programming language, which of the following type of operators have the highest precedence
Discuss
Answer: (d).Arithmetic operators
Q237.
What will be the output of the following program?
void main()
{
      int a, b, c, d;
      a = 3;
      b = 5;
      c = a, b;
      d = (a, b);
      printf("c=%d d=%d", c, d);
}
Discuss
Answer: (b).c=3 d=5
Discuss
Answer: (d).All of the above
Q239.
What will be the output of this program on an implementation where int occupies 2 bytes?
#include <stdio.h>
void main()
{
      int i = 3;
      int j;
      j = sizeof(++i + ++i);
      printf("i=%d j=%d", i, j);
}
Discuss
Answer: (b).i=3 j=2
Q240.
Which operator has the lowest priority?
Discuss
Answer: (d).||

Suggested Topics

Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!