If we saw the following line of code:

public class Tablet extends Computer

What would we say is the superclass?

Computer
  • Tablet
  • public
  • extends

public is a modifier that tells java what can access the class

extends helps us specify that a class has a superclass