Multiple choice technology programming languages An Interface must have a constructor True False Reveal answer Fill a bubble to check yourself B Correct answer Explanation Interfaces in Java cannot have constructors. Interfaces define contracts without implementation state, so there's nothing to initialize. Constructor chains only make sense for classes with implementation.