TG5

TG5

1st - 12th Grade

5 Qs

quiz-placeholder

Similar activities

Security Pro A.3

Security Pro A.3

9th Grade

9 Qs

Unit VI - Knowledge test

Unit VI - Knowledge test

1st Grade

9 Qs

Ulangan AIJ Bab 3 XII TKJ

Ulangan AIJ Bab 3 XII TKJ

1st Grade - Professional Development

10 Qs

Data Engineer 288-297

Data Engineer 288-297

12th Grade

10 Qs

test

test

1st - 10th Grade

10 Qs

Object Oriented Programming

Object Oriented Programming

11th - 12th Grade

8 Qs

BTEC DIT Modern Technology (Cloud Computing)

BTEC DIT Modern Technology (Cloud Computing)

8th - 9th Grade

10 Qs

Intro to Server Quiz

Intro to Server Quiz

12th Grade

10 Qs

TG5

TG5

Assessment

Quiz

Computers

1st - 12th Grade

Hard

Created by

Argert Boja

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Reuse:

The goal of inheritance is only to achieve interface specification

White box reuse could be achieved using inheritance

Delegation reuses implemented functionality in the superclass

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Generalisation vs. Specialisation:

Generalisation usually leads to model transformation

Refactoring means restructuring the UML model to fill in the gap between object design and system design

In specialisation Inheritance we first discover the subclass then the superclass

3.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Composite Pattern:

Composite pattern is used when we need to choose between multiple strategies during runtime

Composite pattern is a Creational pattern

The composite pattern lets a Client treat an individual class called Leaf and Compositions of Leaf classes uniformly

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Bridge Pattern:

The bridge pattern provides a bridge between the concrete implementation and the solution domain

The degenerated bridge pattern has no application domain taxonomy

The bridge pattern allows to bind the interface and its subclass before startup time of the system

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Proxy Pattern:

The proxy pattern allows to defer object creation and object initialization to the time the object is needed

During access control the proxy object acts as a stand-in for an object which is expensive to create

The implementation of request() in Proxy uses inheritance to access request() in RealSubject