Answer:
You shouldn't be using inheritance if your program doesn't reuse code a lot.
Step-by-step explanation:
This is really the purpose of inheritance, to make it easier for us to call repeated method calls without having to copy and paste all the time and making our program long and redundant. If you have simple programs that don't have repeated calls, then inheritance is unnecessary.