Multiple choice technology programming languages

How do you terminate code execute with in a VB.NET method

  1. Exit

  2. Close Sub

  3. Exit Sub

  4. Kill

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

Exit Sub immediately terminates execution of a VB.NET Sub procedure. Exit alone is incomplete, Close Sub is not valid syntax, and Kill is not a language keyword (it relates to file operations in some contexts).