What are the two main components typically found inside a well-designed Java class?
- **A)** Only constructors, with no other methods allowed
- **B)** Only a single \(main\) method
- **C)** A class can contain only one instance variable and no methods
- **D)** INSTANCE VARIABLES (data/state the object holds) and METHODS (behaviors the object can perform)
A class's instance variables define its state, while its methods define how that state can be accessed, changed, or acted upon.