Multiple choice technology programming languages When we implement an interface method,it should be declared as Public True False Reveal answer Fill a bubble to check yourself A Correct answer Explanation Interface methods are implicitly public. When a class implements an interface method, it cannot reduce visibility - it must remain public. Making it private, protected, or package-private would violate the interface contract.