Unit 12 - The case study: part 3 Flashcards

1
Q

List the architectural styles and design patterns mentioned in the implementation described above.

A

Call-return, layered, MVC and Facade.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What levels of visibility can attributes have?

A

. private – visible only to the class and objects of the same class

. package – visible to classes and objects in the same Java package

. protected – visible to classes and objects in the same Java package and to the class’s subclasses and their instances anywhere

. public – visible to all classes and their instances.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly