asked 193k views
3 votes
Which keyword is used to specify that a class will define the methods of an interface?.

asked
User Jsageryd
by
8.5k points

1 Answer

4 votes

The keyword used to indicate that a class will define the methods of an interface in Java is "implements." When a class implements an interface, it commits to providing concrete implementations for all the methods declared within that interface

answered
User Sunil Mathari
by
8.5k points