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 platforms and products
  1. ready-made environment in which users can perform functions on webMethods applications

  2. manage access to webMethods applications functions

  3. Capability to develop user interface pages

  4. Broad-based set of administrative tools

  5. None of Above

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

My webMethods Server provides: a ready-made user environment for applications, access management through security controls, UI development capabilities through its interface framework, and comprehensive administrative tools for server management.

Multiple choice technology platforms and products
  1. Embedded database

  2. External RDBMS

  3. File System

  4. none

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

For lightweight installations like running only the Messaging UI, My webMethods Server can use its embedded database (Apache Derby). External RDBMS is required for production but not for this limited use case.

Multiple choice technology platforms and products
  1. deployMap.properties

  2. phaseProvider.xml

  3. mws.xml

  4. deploy.xml

  5. ConfigurationManagerProperties.xml

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

The phaseProvider.xml configuration file controls deployment synchronization settings in MWS, including the deploySynch parameter that enables automatic portlet deployment. This file defines deployment phases and their associated behaviors.

Multiple choice technology
  1. processRequest

  2. processFormRequest

  3. processRequest and processFormRequest

  4. processDataRequest

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

In OAF Controller, processRequest is the method where you programmatically hide beans, fields, buttons, or regions during initial page rendering. This is done before the page is displayed to the user. processFormRequest handles form submission processing. Option A is correct.

Multiple choice technology web technology
  1. View Layer/Presentation Layer

  2. Java Bean

  3. Controller

  4. Model Layer

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

JPA (Java Persistence API) is used for ORM, mapping database tables to Java entity classes, which belongs to the Model layer in MVC architecture. The Model represents data and business logic. View Layer handles presentation, Controllers handle request routing, and Java Beans are a broader component concept not specific to persistence.

Multiple choice technology architecture
  1. An add-on provided by Business Objects

  2. A separate product provided by a third party

  3. A different view of the security model

  4. A report development tool

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

360 is a separate product provided by a third party that offers a different view of the security model. It is not a Business Objects add-on or a report development tool. Instead, it's an external security management solution that provides an alternative interface and approach to managing the same underlying security model.

Multiple choice technology platforms and products
  1. It is no longer necessary to use Line continuation character ( _ ) to continue the code to next line. This is not supported in NET 4.0

  2. Optional parameters can now be nullable

  3. It is now possible to create Jagged Arrays with following syntax: Dim ArrayNewWay = {({"1", "2", "3"}), ({"4", "5"})}

  4. Collections can now be initialized using the following syntax with the new From keyword: Dim Colors As New List(Of String) From {"Red", "Yellow", "Green"}

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

VB.NET 4.0 introduced implicit line continuation, making the underscore character optional in many cases where line breaks would naturally occur (after operators, commas, opening parentheses, etc.). Option A is incorrectly worded but identifies the right concept - line continuation became largely optional in VB.NET 4.0.

Multiple choice technology
  1. ITM Agent

  2. ITM Server

  3. ICF

  4. All of the above

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

In CA eTrust (now CA Threat Manager), the ITM (Integrated Threat Management) Agent is the software component installed on local computers that performs the actual scanning and threat detection. The ITM Server provides central management, while ICF (Intermediate Collection Facility) handles data relay between agents and servers. Option A is correct because the agent runs locally to enable scanning.

Multiple choice technology
  1. ITM

  2. ICF

  3. RC

  4. None of the above

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

The ITM (Integrated Threat Management) server is responsible for discovering, tracking, and managing all ITM Agent instances across the network. It maintains the inventory of agents and facilitates centralized management. Option A correctly identifies the ITM server. Option B (ICF) is for intermediate data collection and forwarding. Option C (RC) is not the primary agent management component.

Multiple choice technology platforms and products
  1. iProcess Engine -> The high-performance process automation engine acquired from Staffware

  2. iProcess Analytics -> Process Perfonnance Monitor, providing OLAP-style analytics on process performance

  3. iProcess Insight -> Business rules management, integrated with iProcess

  4. TIBCO Business Studio 2.0 -> A new Eclipse-based process modeling, simulation and executable design tool using BPMN

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

iProcess Insight is actually process mining and analysis, not business rules management. Business rules management would typically be handled by other tools or modules within the iProcess suite.

Multiple choice technology platforms and products
  1. Incomplete -> Development

  2. Model -> Operational

  3. Withdrawn -> Phase-out

  4. Unreleased -> Development/Testing

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

Model status should correspond to Development or Testing phases, not Operational use. When a procedure is in Model status, it is still being developed or tested and should not be used for live operational processing. The correct lifecycle is: Incomplete/Unreleased → Development/Testing, then Released → Operational, and Withdrawn → Phase-out.

Multiple choice technology mainframe
  1. Extra Partition Transient Data Queue (TDQ)

  2. Intra Partition Transient Data Queue (TDQ)

  3. Temporary Storage Queue (TSQ)

  4. All of the above

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

Intra Partition Transient Data Queues (TDQ) support Automatic Transaction Initiation (ATI) in CICS, allowing a transaction to be automatically started when data is written to the queue. Extra Partition TDQ and TSQ do not support ATI, making option B the correct answer.