Crossword Puzzles (Core Java Day-8)

12345678910
Across
  1. 2. A type of software architecture which provides a clean separation between the business logic, presentation and data access logic.
  2. 3. A layer which abstracts the logic required to access the underlying data store
  3. 6. POJO objects used to store data values and expose them through properties.
  4. 7. A type of object created in unit testing which provides the ability to test code that is not yet written.
  5. 9. A layer consisting of logic required to accept user input and display application output.
  6. 10. The object that are sent across the layers which carry data from one layer to other
Down
  1. 1. A type of test which allows you to run the same test with different data.
  2. 4. A layer which is responsible for implementing business rules .
  3. 5. Multiple related tests grouped together for convenient testing in junit.
  4. 8. Junit annotation which species a runner class while running the annotated class.