INFORMATION TECHNOLOGY

123456789101112131415161718192021222324252627282930
Across
  1. 4. of the Java programming language is the set of rules defining how a Java program is written and interpreted
  2. 5. is an object-oriented programming language
  3. 7. are devices that are used to store data, such as a number, or a string of character data
  4. 10. is a programming language model organized around objects rather than "actions" and data rather than logic
  5. 12. is a character that represents an action
  6. 13. can be defined as a template/blueprint that describes the behavior/state that the object of its type support
  7. 15. is one of the four fundamental OOP concepts
  8. 17. search operators are and, or and not
  9. 19. is a feature that allows a subclass or child class to provide a specific implementation of a method that is already provided by one of its super-classes or parent classes
  10. 21. is the design technique to implement has-a relationship in classes
  11. 23. is a feature that allows a class to have more than one method having the same name, if their argument lists are different
  12. 24. are syntactic representations of boolean, character, numeric, or string data
  13. 25. statement allows us to execute a statement or group of statements multiple times and following is the general form of a loop statement in most of the programming languages
  14. 26. is a class built into the Java language defined in the java.lang package
  15. 27. blocks allow a program to take a different path depending on some condition(s)
  16. 30. are how we communicate with objects
Down
  1. 1. is declared at the top of the source code using the keyword package
  2. 2. is a container object that holds a fixed number of values of a single type
  3. 3. is an informal high-level description of the operating principle of a computer program or other algorithm
  4. 6. looks like a class but it is not a class
  5. 8. is an unambiguous specification of how to solve a class of problems
  6. 9. code is the fundamental component of a computer program that is created by a programmer
  7. 11. Abstraction is the property by virtue of which only the essential details are displayed to the user
  8. 14. is an object-oriented programming concept that refers to the ability of a variable, function or object to take on multiple forms
  9. 16. statement can be used as an expression in Java
  10. 18. data types hold only numeric data
  11. 20. is an important pillar of OOP(Object Oriented Programming)
  12. 22. allows to insert text that will not be compiled nor interpreted
  13. 26. can be anything from a single line of code to a complex mathematical equation
  14. 28. characters can also be expressed through Unicode Escape Sequences
  15. 29. have states and behaviors. Example: A dog has states - color, name, breed as well as behaviors – wagging the tail, barking, eating