Operators - General Questions Online Exam Quiz

Operators - General Questions GK Quiz. Question and Answers related to Operators - General Questions. MCQ (Multiple Choice Questions with answers about Operators - General Questions

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

Options

A : 1, 3

B : 2, 4

C : 3, 5

D : 4, 5

View Answer

What will be the output of the C#.NET code snippet given below?

Options

A : 163 92

B : 92 163

C : 192 63

D : 0 1

View Answer

Which of the following is NOT an Arithmetic operator in C#.NET?

Options

A : **

B : +

C : /

D : %

View Answer

Which of the following are NOT Relational operators in C#.NET?

Options

A : 1, 3

B : 2, 4

C : 3, 5

D : 4, 5

View Answer

Which of the following is NOT a Bitwise operator in C#.NET?

Options

A : &

B : |

C : <<

D : ^

View Answer

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

Options

A : A value 0 will be assigned to d .

B : A value 1 will be assigned to d .

C : A value -1 will be assigned to d .

D : The code reports an error.

View Answer

Which of the following is the correct output for the C#.NET code snippet given below?

Options

A : 6.5 1

B : 6.5 0

C : 6 0

D : 6 1

View Answer

Which of the following statements are correct about the Bitwise & operator used in C#.NET?

Options

A : 1, 2, 4

B : 2, 3, 5

C : 3, 4

D : 3, 4, 5

View Answer

Which of the following are Logical operators in C#.NET?

Options

A : 1, 2, 3

B : 1, 3, 4

C : 2, 4, 5

D : 3, 4, 5

View Answer

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?

Options

A : if ((n& 16 ) == 16 ) Console.WriteLine( "Fourth bit is ON" );

B : if ((n& 8 ) == 8 ) Console.WriteLine( "Fourth bit is ON" );

C : if ((n ! 8 ) == 8 ) Console.WriteLine( "Fourth bit is ON" );

D : if ((n ^ 8 ) == 8 ) Console.WriteLine( "Fourth bit is ON" );

View Answer

Attributes - General Questions more Online Exam Quiz

Functions and Subroutines - General Questions

Inheritance - General Questions

Interfaces - General Questions

Namespaces - General Questions

Polymorphism - General Questions

Properties - General Questions

Structures - General Questions

Advanced SQL - General Questions

Data and Database Administration - General Questions