AP Comsci Terms

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