Which of the following is correct ? Select all correct answers.
a. The native keyword indicates that the method is implemented in another language like C/C++.
b. The only statements that can appear before an import statement in a
Java file are comments.
c. The method definitions inside interfaces are public and abstract. They cannot be private or protected.
d. A class constructor may have public or protected keyord before them, nothing else.
The answer given is a,c and d. But I choose a and c. B'case the valid modifiers for a constructor is public, protected, private or nomodifier.
Am I correct?? pls. explain me.