Computer Knowledge

Software Development and Management

3,064 Questions

Software development and management focuses on the system development life cycle, enterprise architecture, and configuration management. It tests your familiarity with system analysis, design models, and IT project planning. This subject is essential for specialist and banking officer scale examinations.

System analysis and designSoftware development life cycleConfiguration managementEnterprise architectureObject oriented design

Software Development and Management Questions

Multiple choice technology web technology
  1. System.Diagnostics.Process

  2. System.Object class

  3. System.Drawing namespace

  4. None of the Above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In VB.NET, if Option Strict is turned off and a variable is declared without an explicit type (e.g., Dim x), the compiler defaults its type to System.Object, which is the root of the .NET type hierarchy.

Multiple choice technology web technology
  1. In VB.NET a child Class can Inherit from 2 Parent Classes

  2. Inheritance concept is not supported by .NET

  3. Both A) and B)

  4. None of the Above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

VB.NET does not support multiple inheritance from classes (only single inheritance with multiple interface implementation). .NET fully supports inheritance as a core object-oriented concept. Both statements A and B are false.

Multiple choice technology web technology
  1. Single inheritance using classes

  2. Multiple inheritance using interfaces

  3. Both A) and B)

  4. None of the Above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

VB.NET supports single inheritance for classes (a class can inherit from only one base class) and multiple inheritance for interfaces (a class or interface can implement/inherit multiple interfaces).

Multiple choice technology testing
  1. Quality Center Foundation

  2. Business Process Insight

  3. Service Test ComponentBusiness Process Insight

  4. Quality Center Dashboard

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Quality Center Dashboard provides executive-level visualization and reporting, offering high-level metrics, graphs, and status views of the entire testing process for management oversight.

Multiple choice technology programming languages
  1. Create

  2. Initialize

  3. Load

  4. New

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

The New procedure (constructor) is called when an object is instantiated, making it the ideal place to initialize class-level variables. In VB.NET, Sub New is the constructor that runs automatically when you create an instance using 'New'. Create is not a standard procedure name. Initialize is not a built-in event. Load is a form event that fires after the constructor, when the form is loaded, but variables need initialization earlier. The constructor is the first code that runs when an object is created.

Multiple choice technology architecture
  1. Composite

  2. Bridge

  3. Adaptor

  4. Facade

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

The Facade pattern provides a unified, simplified interface to a complex subsystem of interfaces. It defines a higher-level interface that makes the subsystem easier to use by reducing complexity and hiding the interactions between multiple subsystem components from clients.

Multiple choice technology architecture
  1. System integration

  2. Enterprise wide

  3. Business process

  4. None of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

eTOM (enhanced Telecom Operations Map) is a comprehensive framework for business processes in the telecommunications industry. It defines the key business processes required to run a telecom service provider efficiently.

Multiple choice technology architecture
  1. Business process

  2. Application frame work

  3. System integration

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

TAM (Telecom Application Map) is an application framework that provides a structured view of telecom applications and their relationships. It helps organizations understand their application landscape and dependencies.

Multiple choice technology platforms and products
  1. Passive and Connected

  2. Active and Connected

  3. Passive and Unconnected

  4. Active and Unconnected

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Update strategy transformations are Active and Connected in data warehousing. Active transformations are those that modify the data flow, and Connected transformations are those that are connected to the data flow pipeline. The update strategy fits both characteristics.

Multiple choice technology platforms and products
  1. Precondition

  2. Method

  3. Transition

  4. Iteration

Reveal answer Fill a bubble to check yourself
A,C Correct answer
Explanation

In Pega Activity rules, When Condition rules can be used in Preconditions (to determine if an activity should execute) and Transitions (to control which path to follow after a step). They cannot be used in Methods or Iterations as indicated by options B and D. Options A and C are correct.