Topic 4 Vocabulary

1234567891011121314151617181920212223242526272829303132
Across
  1. 8. Coding from main program down to subprogram
  2. 10. Operator that finds remainder of one integer divided by another
  3. 12. Algorithm that takes log n time to find key
  4. 13. Stores data element. Typically has a name and type.
  5. 15. Computer system specific language that is 1 level of abstractin from machine code
  6. 16. IB Standard Operation to start at beginning of collection
  7. 19. Notation to express order of complexity of algorithm
  8. 20. Essential feature of a computer language
  9. 22. IB Standard Operation to retrieve next item in collection
  10. 24. ________ programming facilitates working in teams and program testing
  11. 25. Data structure that stores a fixed-size collection of elements
  12. 29. Value that can not change
  13. 31. Converts each statement in a HLL into a lower level language one by one
  14. 32. Language made up of 1's and 0's
Down
  1. 1. Computer-implementable instructions, typically to solve a class of problems
  2. 2. IB Standard Operation to check if collection contains no items
  3. 3. Handling complexity by hiding unneccesary details from user
  4. 4. Diagram that depicts a process, system or computer algorithm
  5. 5. An element of code that can be used again in different places
  6. 6. Search that starts at beginning of list and compares until it finds key
  7. 7. Sorting algorithm compares each item in a list, swapping if necessary. Repeats until no swaps are made.
  8. 9. Used to manipulate operands
  9. 11. Data element comprised of states and methods
  10. 14. IB Standard Operation to add an item to collection
  11. 17. Grace ______. Early pioneer in computer programmer. Wored on the Harvard Mark I.
  12. 18. More abstract, understanderable computer language
  13. 21. Data structure that stores an variable-size collection of elements
  14. 23. Trans forms all high-level language code at once into a lower level language
  15. 26. Sorting algorithm finds the amllest element in a list each pass, making one swap
  16. 27. IB Standard Operation to check for another item in collection
  17. 28. Measure of amount of time/space required for an algorithm
  18. 30. Fundamental operation of a computer