Examine the following code segment.

public class Thing extends OtherThing
{
    // TODO: Think of better names...
}

Which of the following things are not true about this code segment?

OtherThing is a subclass of Thing.
  • OtherThing is the parent class of Thing.
  • OtherThing is the superclass of Thing.
  • Thing will inherit all of methods and attributes of OtherThing.

There are not hints for this question