Multiple choice technology programming languages

How do you achieve interface implementation in VB.NET?

  1. Implements

  2. Uses

  3. Imports

  4. Overrides

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

VB.NET uses the Implements keyword to implement interface members. A class uses Implements InterfaceName to declare it implements an interface, and Implements Interface.Member for each member implementation.