C# Programming - Operators
Exercise : Operators - General Questions
- Operators - General Questions
16.
What will be the output of the C#.NET code snippet given below?
int i, j = 1, k;
for (i = 0; i < 5; i++)
{
k = j++ + ++j;
Console.Write(k + " ");
}
17.
What will be the output of the C#.NET code snippet given below?
int a = 10, b = 20, c = 30;
int res = a < b ? a < c ? c : a : b;
Console.WriteLine(res);
18.
Which of the following statements are correct about the following code snippet?
int a = 10;
int b = 20;
bool c;
c = !(a > b);
- There is no error in the code snippet.
- An error will be reported since ! can work only with an int.
- A value 1 will be assigned to c.
- A value True will be assigned to c.
- A value False will be assigned to c.
19.
Which of the following statements is correct about Bitwise ^ operator used in C#.NET?
20.
Which of the following statements are correct?
- The conditional operator (?:) returns one of two values depending on the value of a Boolean expression.
- The as operator in C#.NET is used to perform conversions between compatible reference types.
- The &* operator is also used to declare pointer types and to dereference pointers.
- The -> operator combines pointer dereferencing and member access.
- In addition to being used to specify the order of operations in an expression, brackets [ ] are used to specify casts or type conversions.
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers