Which of these field declarations are legal within the body of an interface?.
Select the three correct answers.
(a), (c), and (d)
Fields in interfaces declare named constants, and are always public, static, and final.
None of these modifiers are mandatory in a constant declaration.
All named constants must be explicitly initialized in the declaration.