Which keyword is utilized to indicate that a class is adopting an interface?
Explanation
The keyword 'implements' is used when a class adopts an interface, allowing it to provide concrete implementations for the interface's methods. 'throw' and 'throws' relate to exception handling, while 'extend' is used for inheriting from a class.