Laboratory - Week 10 – 11 Facade Pattern

Laboratory - Week 10 – 11 Facade Pattern

University

20 Qs

quiz-placeholder

Similar activities

SE2 (LAB) Week 3 – 4 Strategy Pattern

SE2 (LAB) Week 3 – 4 Strategy Pattern

University

23 Qs

Chapter 1 - SAD

Chapter 1 - SAD

University

19 Qs

LONGTEST_PRELIM_SIA2

LONGTEST_PRELIM_SIA2

University

15 Qs

Internet & World Wide Web -GEN175

Internet & World Wide Web -GEN175

12th Grade - University

20 Qs

Exploring Design Patterns

Exploring Design Patterns

University

21 Qs

เทคโนโลยี ม.4 (กลางภาค)

เทคโนโลยี ม.4 (กลางภาค)

University

20 Qs

Integrative Programming Technologies 2-Removal (FINALS)

Integrative Programming Technologies 2-Removal (FINALS)

University

19 Qs

Evaluasi Pemahaman DDD

Evaluasi Pemahaman DDD

University

20 Qs

Laboratory - Week 10 – 11 Facade Pattern

Laboratory - Week 10 – 11 Facade Pattern

Assessment

Quiz

Computers

University

Hard

Created by

Hangaan, T.

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the Factory Design Pattern, which component is responsible for defining the interface of the objects to be created?


Concrete Factory

Client

Product

Concrete Product

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a software system using the Factory Design Pattern, what is the main benefit of having the factory create objects instead of using direct object creation?

Elimination of polymorphism.

Reduced code complexity.

Improved performance.

Simplified debugging.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement best defines the Facade design pattern?

Facade pattern enables direct access to individual components within the subsystem for increased flexibility.

Facade pattern simplifies the client's interaction with a complex system by providing a higher-level interface.

Facade pattern is used to enforce strict encapsulation within a single class, minimizing interactions between subsystems.

Facade pattern primarily focuses on enhancing the performance of subsystems by optimizing internal algorithms.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following best describes the Factory Design Pattern?

A creational design pattern.

A structural design pattern.

A behavioral design pattern.


An architectural design pattern.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the purpose of the Switch interface in this code?

To define the switchOn and switchOff methods that are implemented by the ElectricFan, Tv, and Printer classes

To prompt the user to choose an appliance

To create an instance of the Appliance class

To hold information about the appliance created by the user's choice

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which of the following statements can be used to create an instance of a Switch object that can turn on a TV with Netflix installed?

Tv tv = new Tv();
tv.setWithNetflix(true);

Switch sw = new Tv();
sw.setWithNetflix(true);

none of the above.

Appliance app = new Tv();
app.setWithNetflix(true);

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Consider the following code snippet:

It provides a unified interface to the Subsystem class.

It delegates requests to the appropriate methods in the Subsystem class.

It hides the complexity of the Subsystem class from the client code.


All of the above.

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?