SI Week 11

123456789101112
Across
  1. 3. having 2 variables with same name in same scope
  2. 5. int i = 3; here we ____ i
  3. 8. hiding implementation details from clients
  4. 9. keyword that refers to the implicit parameter inside your class
  5. 10. int i; is an example of ____ a variable
  6. 11. an entity that combines state and behavior
  7. 12. a variable inside an object that is part of its state
Down
  1. 1. a distancing between ideas and details
  2. 2. a program entity that represents either a program or a template for a new type of objects
  3. 4. ___ fields cannot be accessed from outside the class
  4. 6. ___ method exists inside each object of a class & gives behavior to each object
  5. 7. String str = "ABC"; here we ____ str