Quizzes
Site Language: English
Українська
English
Русский
Programming Tests
Login
Sign Up
Programming Tests
Theory
Snippets
Papers
Landing
Android
Prices
FAQ
Cosmo Story
Terms and Conditions
Privacy Policy
Cookies Policy
Send Feedback
patterns
:
Content language: English
Русский
Which design pattern is represented by the following code? List<String> strings = Arrays.asList("hello, ", "world", "!");
patterns
Which statements about the following code are correct ? (in some application): public class Singleton { private static Singleton singleton; public static Singleton getInstance() { if (singleton == null) { singleton = new Singleton(); } return singleton; } }
patterns
Using of which design pattern is demonstrated by the following code: FileInputStream in = new FileInputStream("test.dat"); BufferedInputStream bin = new BufferedInputStream(in);
patterns
What is the purpose of the design pattern Bridge?
patterns
What is the main difference between design patterns Decorator and Proxy.
patterns
← Prev
1
Next →
Sign Up Now
or
Subscribe for future quizzes