Multiple choice technology programming languages

Which of the following when turned on do not allow incompatible type conversion?

  1. Option Explicit

  2. Option Strict

  3. Option All

  4. All of the Above

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

In VB.NET, turning on Option Strict restricts implicit data type conversions to only widening conversions, thereby disallowing incompatible or narrowing type conversions that could result in data loss.