CSA_Concept_Check_#1 (Answers have no space in between)

1234567891011121314151617
Across
  1. 2. Keyword in Java used to declare a variable as constant
  2. 4. Type of parameters located in the method header
  3. 6. Keyword in Java used to refer to the current object
  4. 9. Changes made to the formal parameters (Object here)affect actual parameters as memory location of the object is the same
  5. 10. Read double type value from user
  6. 13. Access Specifier where a variable or a method can be easily accessed anywhere in the Java universe
  7. 14. Type of parameters located in the method call
  8. 16. Prints statement on console
  9. 17. Read String type value from user
Down
  1. 1. Access Specifier where a variable or a method can be accessed only inside a class
  2. 3. System class method which prints statement and goes to a new line
  3. 5. Access Specifier where a variable or a method can be accessed by its child class in another package
  4. 7. Read int type value from user
  5. 8. Changes made to the formal parameters do not affect actual parameters as both parameters are stored in different memory locations
  6. 11. Access Specifier where a variable or a method is available to be used inside the same package (no keyword)
  7. 12. Inbuilt method in Java used to return value of an Double object as an double primitive type
  8. 15. Operator used to tests whether an object belongs to a particular type of class
  9. 17. Inbuilt method in Java used to return value of an Integer object as an int primitive type