Multiple choice technology programming languages

Select the keyword used to compare the object variable?

  1. And

  2. OR

  3. IS

  4. OF

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The 'Is' keyword in VB.NET is used for object reference comparison. It checks if two object variables refer to the same instance in memory. 'And' and 'Or' are logical operators, while 'Of' is used for generic type parameters.