gnxbfds

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
Across
  1. 1. Indicates a block of code in a try-catch structure that will always be executed
  2. 4. An access specifier indicating that a method or variable may only be accessed in the class it’s declared in
  3. 7. A statement that executes code based on a test value
  4. 10. References other classes
  5. 11. Sends control and possibly a return value back from a called method
  6. 13. Specifies that a method is implemented with native (platform-specific) code
  7. 15. Specifies that a variable is not part of an object’s persistent state
  8. 18. Specifies critical sections or methods in multithreaded code
  9. 23. A data type that can hold a 32-bit signed integer
  10. 24. Specifies that a method does not have a return value
  11. 26. A data type that can hold unsigned 16-bit Unicode characters
  12. 27. Declares a Java package
  13. 30. Used in switch statements to mark blocks of text
  14. 32. Specifies the default block of code in a switch statement
  15. 33. This indicates that a reference does not refer to anything
  16. 35. Specifies that a class or method will be implemented later, in a subclass
  17. 36. Indicates that a class is derived from another class or interface
  18. 38. A data type that can hold whole numbers
  19. 40. Tests a true/false expression and branches accordingly
  20. 41. A data type that holds a 32-bit floating-point number
  21. 42. A data type that can hold 8-bit data values
  22. 44. A data type that can hold a 16-bit integer
  23. 46. Creates new objects
  24. 47. Indicates that a variable holds a constant value or that a method will not be overridden
Down
  1. 2. Assert describes a predicate placed in a java program to indicate that the developer thinks that the predicate is always true at that place.
  2. 3. Declares an interface
  3. 4. An access specifier used for classes, interfaces, methods, and variables indicating that an item is accessible throughout the application
  4. 5. Indicates alternative branches in an if statement
  5. 6. Indicates whether an object is an instance of a specific class or implements an interface
  6. 8. Sends control back outside a loop
  7. 9. A data type that holds a 64-bit integer
  8. 12. Starts a block of code that will be tested for exceptions
  9. 14. An access specifier indicating that a method or variable may be accessed only in the class it’s declared in
  10. 16. Indicates that a variable or method is a class method
  11. 17. Starts a while loop
  12. 19. A data type that can hold 64-bit floating-point numbers
  13. 20. A data type that can hold True and False values only
  14. 21. To join two strings together
  15. 22. This indicates that a variable may change asynchronously
  16. 23. Specifies that a class implements an interface
  17. 25. Starts a do-while loop
  18. 28. Declares a new class
  19. 29. Refers to a class’s base class
  20. 31. A Java keyword is used to restrict the precision and rounding of floating-point calculations to ensure portability
  21. 34. A Java keyword is used to declare an enumerated type. Enumerations extend the base class.
  22. 37. Creates an exception
  23. 39. Refers to the current object in a method or constructor
  24. 42. A control statement for breaking out of loops.
  25. 43. Used to start a for loop
  26. 45. Catches exceptions generated by try statements