Multiple choice technology programming languages How do you achieve interface implementation in VB.NET? Implements Uses Imports 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.