You are on page 1of 11

1.

Which of the following are the correct ways to increment the value of variable a by 1?

1. 2. 3. 4.

++a++; a += 1; a ++ 1; a = a +1;

5. a = +1;
A. B. C. D. E. 1, 3 2, 4 3, 5 4, 5 None of these

Answer & Explanation

Answer: Option B Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 2. 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. B. C. D. 163 92 92 163 192 63 01

Answer & Explanation

Answer: Option A Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 3. Which of the following is NOT an Arithmetic operator in C#.NET? A. C. E. ** / * B. D. + %

Answer & Explanation

Answer: Option A Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 4. Which of the following are NOT Relational operators in C#.NET? 1. 2. 3. 4. 5. A. B. C. D. E. >= != Not <= <>= 1, 3 2, 4 3, 5 4, 5 None of these

Answer & Explanation

Answer: Option C

Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 5. Which of the following is NOT a Bitwise operator in C#.NET? A. C. E. & << ~ B. D. | ^

Answer & Explanation

6.

Answer: Option C Which of the following statements is correct about the C#.NET code snippet given below?

int d; d = Convert.ToInt32( !(30 < 20) ); A. B. C. D. E. A value 0 will be assigned to d. A value 1 will be assigned to d. A value -1 will be assigned to d. The code reports an error. The code snippet will work correctly if ! is replaced by Not.

Answer & Explanation

Answer: Option B Explanation: Sample Program:

bool falseFlag = false; bool trueFlag = true; Console.WriteLine("{0} converts to {1}.", falseFlag, Convert.ToInt32(falseFlag)); Console.WriteLine("{0} converts to {1}.", trueFlag, Convert.ToInt32(trueFlag));

The example displays the following output: False converts to 0. True converts to 1.
View Answer Workspace Report Discuss in Forum 7. Which of the following is the correct output for the C#.NET code snippet given below? Console.WriteLine(13 / 2 + " " + 13 % 2); A. B. C. D. E. 6.5 1 6.5 0 60 61 6.5 6.5

Answer & Explanation

Answer: Option D Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 8. Which of the following statements are correct about the Bitwise & operator used in C#.NET?

1. 2. 3. 4.

The The The The

& & & &

operator operator operator operator

can can can can

be be be be

used used used used

to to to to

Invert a bit. put ON a bit. put OFF a bit. check whether a bit is ON.

5. The & operator can be used to check whether a bit is OFF.


A. B. C. D. E. 1, 2, 4 2, 3, 5 3, 4 3, 4, 5 None of these

Answer & Explanation

Answer: Option D Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 9. Which of the following are Logical operators in C#.NET? 1. 2. 3. 4. 5. A. B. C. D. E. && || ! Xor % 1, 2, 3 1, 3, 4 2, 4, 5 3, 4, 5 None of these

Answer & Explanation

Answer: Option A Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 10. 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");

E.

if ((n ~ 8) == 8) Console. WriteLine("Third bit is ON");

Answer & Explanation

Answer: Option B Explanation:

byte myByte = 153; // In Binary = 10011001 byte n = 8; // In Binary = 00001000 (Here 1 is the 4th bit from right) Now perform logical AND operation (n & myByte) 10011001 00001000 --------00001000 ---------

Here result is other than 0, so evaluated to True.

If the result is true, then we can understand that 4th bit is ON of the given datamyByte. 11. What will be the output of the C#.NET code snippet given below?

int num = 1, z = 5; if (!(num <= 0)) Console.WriteLine( ++num + z++ + " " + ++z ); else Console.WriteLine( --num + z-- + " " + --z ); A. B. C. D. 56 65 66 77

Answer & Explanation

Answer: Option D Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 12. Suppose n is a variable of the type Byte and we wish to put OFF its fourth bit (from right) without disturbing any other bits. Which of the following statements will do this correctly? A. B. C. D. E.

n = n && HF7 n = n & 16 n = n & 0xF7 n = n & HexF7 n = n & 8

Answer & Explanation

Answer: Option C Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 13. What will be the output of the C#.NET code snippet given below?

byte b1 = 0xAB; byte b2 = 0x99; byte temp; temp = (byte)~b2; Console.Write(temp + " "); temp = (byte)(b1 << b2); Console.Write (temp + " "); temp = (byte) (b2 >> 2); Console.WriteLine(temp); A. B. C. 102 1 38 108 0 32 102 0 38

D.

101

Answer & Explanation

Answer: Option C Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 14. Which of the following statements is correct about Bitwise | operator used in C#.NET? A. B. C. D. E. The | operator can be used to put OFF a bit. The | operator can be used to Invert a bit. The | operator can be used to check whether a bit is ON. The | operator can be used to check whether a bit is OFF. The | operator can be used to put ON a bit.

Answer & Explanation

Answer: Option E Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 15. Which of the following is NOT an Assignment operator in C#.NET? A. C. E. \= *= %= B. D. /= +=

Answer & Explanation

Answer: Option A 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 + " "); } A. B. C. D. 8 4 16 12 20 4 8 12 16 20 4 8 16 32 64 2 4 6 8 10

Answer & Explanation

Answer: Option B Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 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); A. B. C. D. 10 20 30 Compile Error / Syntax Error

Answer & Explanation

Answer: Option C Explanation: No answer description available for this question. Let us discuss.

View Answer Workspace Report Discuss in Forum 18. Which of the following statements are correct about the following code snippet?

int a = 10; int b = 20; bool c; c = !(a > b);

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.
A. B. C. D. E. 1, 3 2, 4 4, 5 1, 4 None of these

Answer & Explanation

Answer: Option D Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 19. Which of the following statements is correct about Bitwise ^ operator used in C#.NET? A. B. C. D. E. The ^ operator can be used to put ON a bit. The ^ operator can be used to put OFF a bit. The ^ operator can be used to Invert a bit. The ^ operator can be used to check whether a bit is ON. The ^ operator can be used to check whether a bit is OFF.

Answer & Explanation

Answer: Option C Explanation: No answer description available for this question. Let us discuss. View Answer Workspace Report Discuss in Forum 20. 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. A. B. C. D. E. 1, 2, 4 2, 3, 5 3, 4, 5 1, 3, 5 None of these

Answer & Explanation

Answer: Option A

You might also like