<AptiCode/>

The ultimate platform for developers to practice, compete, and grow. Join our community of passionate coders today.

TwitterLinkedIn

Platform

ProblemsCompilerAptitude TestsContests

Company

About UsContactRewardsContribute

Legal

Terms of ServicePrivacy PolicyShipping PolicyRefund Policy

© 2025 AptiCode. All rights reserved.

Made withfor developers

topic/Operators

Question NoTitleTypeMarks
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