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