Home > Java Programming > Quizzes > Java Basics Practice Test: Design Patterns
Java Basics Practice Test: Design Patterns
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 0% Most missed: “Which design pattern provides a single class which provides simplified methods r…”
A design pattern is a reusable solution to a common problem in software design. Design patterns are not specific to any particular programming language, and they can be used in any object-oriented language, including Java. Here are some of the most popular Java design patterns: Creational Design Patterns: These patterns provide a way to create objects in a flexible and reusable way. Some examples of creational design patterns include the Singleton pattern, the Factory pattern, and the Builder pattern. Structural Design Patterns: These patterns provide a way to organize objects into larger... Show more
Java Basics Practice Test: Design Patterns
Time left 00:00
10 Questions

1. Which design pattern provides a single class which provides simplified methods required by client and delegates call to those methods?
2. Which of the below is not a valid design pattern?
3. Which of the below is not a valid classification of design pattern?
4. What does MVC pattern stands for?
5. Which design pattern represents a way to access all the objects in a collection?
6. Is design pattern a logical concept.
7. Which of the below author is not a part of GOF (Gang of Four)?
8. Which design pattern works on data and action taken based on data provided?
9. Which design pattern suggests multiple classes through which request is passed and multiple but only relevant classes carry out operations on the request?
10. Which design pattern ensures that only one object of particular class gets created?