APCSP Baddies Crossword 2

1234567891011121314151617181920
Across
  1. 2. a Boolean operator - Everything except the entered input is true
  2. 6. Type of error when the program code is not following the rules of the programming language used
  3. 8. A type of protocol that determines how computers send packets of data to each other
  4. 11. a Boolean operator - one or the other has to be true in order for it to evaluate to true
  5. 12. an expression that results in a __________ value, that is, in a value of either true or false
  6. 13. The maximum amount of data that can be sent in a fixed amount of time over a computer network
  7. 15. Type of error when the program code is trying to do something that's not possible during execution time
  8. 17. Computational Model that uses multiple devices to run a program because of either the processing time or storage needs involved
  9. 18. This protocol allows computer applications to send messages without checking for missing packets to save on time
  10. 19. Algorithms and computing systems can create unfair or discriminatory outcomes
  11. 20. When a system can support failures and still continue to function
Down
  1. 1. Type of error when the program code is not producing the intended output
  2. 3. Search Algorithm that keeps dividing search list by half until target element is found and has a time complexity of O(log2n), n being the no. of elements in the list
  3. 4. _________Information is information about an individual that identifies, links, relates or describes that person like SSN, Biometrics
  4. 5. Computational Model that breaks up the task into smaller sequential pieces that are all executed at the same time using multiple processors
  5. 7. a Boolean operator - Both have to be true in order for it to evaluate to true
  6. 9. For a device to connect to the internet, it is first assigned a ________ Address
  7. 10. Search Algorithm that navigates through the entire search list one element at a time until target element is found and has a time complexity of O(logn), n being the no. of elements in the list
  8. 14. finds the remainder after division of one number by another
  9. 16. Computational Model in which operations are performed in order one at a time