Tag: architecture

Questions Related to architecture

Multiple choice technology architecture
  1. private ServiceController FMServiceController = new ServiceController ('EasyNomad') ;

  2. private ServiceController FMServiceController = new ServiceController ('EasyNomad', 'FileWatch') ;

  3. private ServiceController FMServiceController = new ServiceController ('FileWatch', 'EasyNomad') ;

  4. private ServiceController FMServiceController = new ServiceController(“FileWatch”) ;

Reveal answer Fill a bubble to check yourself
C,D Correct answer
Multiple choice technology architecture
  1. The pattern that creates many instances of a single class in one shot

  2. This pattern is to have only a single constructor to a class

  3. Provides a class of which there can be no more than an instance, and provides a single global point of access to that instance

  4. Creates and maintains a pool of objects, using which a single object can used and returned to the pool

Reveal answer Fill a bubble to check yourself
C Correct answer