Multiple choice technology web technology

interfaces represent concrete types that convey implementation details such as fields and method implementations.

  1. True

  2. False

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

Interfaces define abstract contracts with method signatures only, without implementation details like fields or method bodies. This is the fundamental purpose of interfaces - to specify what a type can do without defining how. Concrete types that implement interfaces provide the actual implementation. Therefore, the statement is false.