Interview Questions  «Prev  Next»
  • Interview Questions
  • MDA Faq
  • RUP Faq1
  • RUP Faq2
  • UML Questions

  • RUP Interview Questions - Part 1

    1. What is a requirement?

      Answer:
      A requirement is a condition or capability a system must meet.
      The active management of requirements encompasses three activities:
      1. eliciting
      2. organizing
      3. documenting
      the system's required functionality and constraints

    2. Which set of significant decisions does a system's architecture encompass?
      Answer:
      1. The organization of a software system
      2. The selection of the structural elements and their interfaces by which the system is composed
      3. Their behavior, as specified by the collaborations among those elements
      4. The composition of these structural and behavioral elements into progressively larger subsystems
      5. The architectural style that guides this organization: These elements and their interfaces, their collaborations, and their composition

    3. What types of solutions does using component-based architectures offer?
      Answer:
      1. Components facilitate resilient architectures.
      2. Modularity enables a clear separation of concerns among elements of a system that are subject to change
      3. Reuse is facilitated by leveraging standardized frameworks (such as COM +, CORBA, and EJB) and commercially available components
      4. Components provide a natural basis for configuration management
      5. Visual modeling tools provide automation for component-based development
    4. What are some of the development concerns common to every project?
      Answer:
      System attributes such as
      1. performance
      2. scalability
      3. reliability
      4. maintainability
      5. security
      6. ease of incorporating new functionality
      7. Ability to integrate the system with existing systems


    5. Which 3 concerns do Enterprise systems exhibit?

      Answer:
      (BID)
      1. Business Concerns
      2. Integration Concerns
      3. Development Concerns

    6. What is a common multi-tier architecture?
      Answer:
      1. Presentation Tier
      2. Business Tier
      3. Integration Tier

    7. In which tier does user interface frameworks correspond to?

      Answer:
      The presentation tier. The View of the MVC Architecture.

    8. Why is the concept of container-based computing central to the J2EE platform?

      Answer:
      It allows components to execute in an environment that provides the services they require. Research transactional services.

    9. What does JAAS enable?

      Answer:
      Java Authentication and Authorization Service: JAAS allows J2EE applications to authenticate users (to reliably and securely determine who is currently executing Java code) and authorize users (to ensure that they have the permissions required to perform the necessary actions).


    10. What is RMI - IIOP ?

      Answer:
      Remote Method Invocation over Internet Inter-Orb Protocol (RMI-IIOP)
      RMI is a Java standard for providing distributed object communication between two Java objects.
      In order to provide maximum interoperability between elements that may not be written in Java (such as an EJB container), the J2EE platform stipulates that the language-independent Internet Inter-Orb Protocol (IIOP) be used.
      IIOP is an element of the CORBA (Common Object Request Broker Architecture) standard that is defined by the OMG.