1. | Which of the following statements are correct? 1 The conditional operator (?:) returns one of two values depending on the value of a Boolean expression. 2 The as operator in C#.NET is used to perform conversions between compatible reference types. 3 The &* operator is also used to declare pointer types and to dereference pointers. 4 The -> operator combines pointer dereferencing and member access. 5 In addition to being used to specify the order of operations in an expression, brackets [ ] are used to specify casts or type conversions. |
|||||||||
Answer: Option A Explanation: No answer description available for this question. Let us discuss.
|
2. | Which of the following statements is correct about Bitwise ^ operator used in C#.NET?
|
|||||||||
Answer: Option C Explanation: No answer description available for this question. Let us discuss.
|
3. | Which of the following statements are correct about the following code snippet? int a = 10; 1 There is no error in the code snippet. 2 An error will be reported since ! can work only with an int. 3 A value 1 will be assigned to c. 4 A value True will be assigned to c. 5 A value False will be assigned to c.
|
|||||||||
Answer: Option D Explanation: No answer description available for this question. Let us discuss.
|
4. | What will be the output of the C#.NET code snippet given below? int a = 10, b = 20, c = 30; |
|||||||
Answer: Option C Explanation: No answer description available for this question. Let us discuss.
|
5. | What will be the output of the C#.NET code snippet given below? int i, j = 1, k; |
|||||||
Answer: Option B Explanation: No answer description available for this question. Let us discuss.
|
6. | Which of the following is NOT an Assignment operator in C#.NET? |
|||||||||
Answer: Option A Explanation: No answer description available for this question. Let us discuss.
|
7. | Which of the following statements is correct about Bitwise | operator used in C#.NET? |
|||||||||
Answer: Option E Explanation: No answer description available for this question. Let us discuss.
|
8. | What will be the output of the C#.NET code snippet given below? byte b1 = 0xAB; |
|||||||
Answer: Option C Explanation: No answer description available for this question. Let us discuss.
|