topic/Operators
Start Test
Question No
Title
Type
Marks
635.
Which of the following are the correct ways to increment the value of variableaby1?++a++;a += 1;a ++ 1;a = a +1;a = +1;
MCQ
5
402.
What is the result of the following operation:10 / 3?
MCQ
5
403.
What is the result of the following operation:2 ** 3?
MCQ
5
404.
What is the result of the following operation:10 // 3?
MCQ
5
405.
What is the result of the following operation:5 % 2?
MCQ
5
406.
What is the result of the following operation:not (3 < 5)?
MCQ
5
636.
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);
MCQ
5
637.
Which of the following is NOT an Arithmetic operator in C#.NET?
MCQ
5
638.
Which of the following are NOT Relational operators in C#.NET?>=!=Not<=<>=
MCQ
5
639.
Which of the following is NOT a Bitwise operator in C#.NET?
MCQ
5