Across
- 2. A class that is not abstract, and hence can be instantiated
- 7. A class that provides only static final fields
- 12. a condition that leads to a recursive method no longer creating another method to call on itself.
- 13. A type of programming loop where a loop calls its own method multiple times until the exit condition meets, very resource intensive
- 14. What keyword allows a subclass to inherit an abstract class?
- 17. how many digits does octal have
- 18. A number system that represents numeric values using 8 diff symbols typically 0 through 8
- 19. What base does binary use?
- 20. 2E in binary
Down
- 1. A variable used exclusively in a method to call an x and return a y or function with the method
- 3. What decimal number is this 10110
- 4. Like parameter, call a method with a parameter/argument and it will comply a function based on the parameter/argument
- 5. Is also referred to as hex color codes
- 6. Blue in hexadecimal
- 8. Operation of joining character strings end to end
- 9. Take a condition of a variable or list and tests every single condition in usually a non specific order
- 10. This is the extending class of the extended class/parent class. It can do what the parent can do + more
- 11. The required declaration on a method to declare that it will be the first method run in the program
- 15. Simple sorting algorithm that builds the final sorted array one item at a time.
- 16. method A "template" for a method that concrete subclasses must implement.
