Multiple choice technology programming languages

Select the keyword used to refer the name space in our code in VB.Net

  1. Using

  2. Package

  3. Imports

  4. None of the above

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

In VB.NET, the Imports keyword is used to reference namespaces in your code, similar to how 'using' is used in C#. This allows you to use types from those namespaces without fully qualifying them. The Package keyword doesn't exist in VB.NET, and Using is for resource management (like IDisposable objects).