C Sharp Operators Questions and Answers

Practice Mode
Showing 10 of 19 questions
Q1
Which of the following are the correct ways to increment the value of variable a by 1?     1.    ++a++;     2.      a += 1;     3.    a ++ 1;     4.    a = a +1;     5.    a = +1;
  • A 1, 3
  • B 2, 4
  • C 3, 5
  • D 4, 5
Answer: Option B
Q2
What will be the output of the C#.NET code snippet given below? byte b1 = 0xF7; byte b2 = 0xAB; byte temp; temp = (byte)(b1 & b2); Console.Write (temp + " "); temp = (byte)(b1^b2); Console.WriteLine(temp);
  • A 163 92
  • B 92 163
  • C 192 63
  • D 0 1
Answer: Option A
Q3
Which of the following is NOT an Arithmetic operator in C#.NET?
  • A **
  • B +
  • C /
  • D %
Answer: Option A
Q4
Which of the following are NOT Relational operators in C#.NET? >=     !=     Not     <=     <>=
  • A 1, 3
  • B 2, 4
  • C 3, 5
  • D 4, 5
Answer: Option C
Q5
Which of the following is NOT a Bitwise operator in C#.NET?
  • A &
  • B |
  • C <<
  • D ^
Answer: Option C
Q6
Which of the following statements is correct about the C#.NET code snippet given below? int d; d = Convert.Tolnt32( !(30 &lt; 20) );
  • A A value 0 will be assigned to d.
  • B A value 1 will be assigned to d.
  • C A value -1 will be assigned to d.
  • D The code reports an error.
Answer: Option B
Q7
Which of the following is the correct output for the C#.NET code snippet given below? Console.WriteLine(13 / 2 + &quot; &quot; + 13 % 2);
  • A 6.5 1
  • B 6.5 0
  • C 6 0
  • D 6 1
Answer: Option D
Q8
Which of the following statements are correct about the Bitwise &amp; operator used in C#.NET? The &amp; operator can be used to Invert a bit. &nbsp;&nbsp;&nbsp; The &amp; operator can be used to put ON a bit. &nbsp;&nbsp;&nbsp; The &amp; operator can be used to put OFF a bit. &nbsp;&nbsp;&nbsp; The &amp; operator can be used to check whether a bit is ON. &nbsp;&nbsp;&nbsp; The &amp; operator can be used to check whether a bit is OFF.
  • A 1, 2, 4
  • B 2, 3, 5
  • C 3, 4
  • D 3, 4, 5
Answer: Option D
Q9
Which of the following are Logical operators in C#.NET? &nbsp;&nbsp;&nbsp; &amp;&amp; &nbsp;&nbsp;&nbsp; || &nbsp;&nbsp;&nbsp; ! &nbsp;&nbsp;&nbsp; Xor &nbsp;&nbsp;&nbsp; %
  • A 1, 2, 3
  • B 1, 3, 4
  • C 2, 4, 5
  • D 3, 4, 5
Answer: Option A
Q10
Suppose n is a variable of the type Byte and we wish, to check whether its fourth bit (from right) is ON or OFF. Which of the following statements will do this correctly?
  • A if ((n&16) == 16) Console.WriteLine("Third bit is ON");
  • B if ((n&8) == 8) Console.WriteLine("Third bit is ON");
  • C if ((n ! 8) == 8) Console.WriteLine("Third bit is ON");
  • D if ((n ^ 8) == 8) Console.WriteLine("Third bit is ON");
Answer: Option B
Questions and Answers for Competitive Exams Various Entrance Test