Multiple choice technology programming languages

Which of the following is false for Managed Code performance improvement:

  1. Late binding defers type identification process until run time, so prefer Late Binding whenever possible

  2. Always enable Option Explicit and Option Strict options(while using Visual Basic.NET)

  3. If Com objects is referred in code, destroy COM objects always after use

  4. While implementing threading, do not use Thread.Abort to terminate other threads

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

Late binding defers type resolution to runtime, which introduces significant performance overhead. For optimal performance, early binding should always be preferred, making the statement favoring late binding false.