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. BAM Adapter

  2. Socket Adapter

  3. OSB Adapter

  4. AQ Adapter

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

Oracle BPEL supports various technology adapters including BAM Adapter (option A), Socket Adapter (option B), and AQ Adapter for Advanced Queuing (option D). However, OSB Adapter (option C) is not a valid adapter - Oracle Service Bus (OSB) is a separate product and integration is done through direct calls or other mechanisms, not a dedicated BPEL adapter.

Multiple choice technology platforms and products
  1. FTP Adapter

  2. AQ Adapter

  3. File Adapter

  4. RemoteFile Adapter

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

The FTP Adapter is used for file exchange on remote file systems using the FTP protocol. It enables BPEL processes to read, write, and list files on remote FTP servers. The AQ Adapter (option B) is for Oracle Advanced Queuing, the File Adapter (option C) is for local file system operations, and RemoteFile Adapter (option D) is not a standard Oracle adapter.

Multiple choice technology platforms and products
  1. Logging

  2. Monitoring

  3. Reporting

  4. Dehydration

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

Dehydration is the mechanism used by Oracle BPEL Process Manager to automatically persist the state of long-running processes to a database. When a process waits for a response (like in an asynchronous call), Oracle BPEL dehydrates the process state, allowing it to be resumed later without keeping memory resources occupied. Logging is for tracking, Monitoring is for runtime observation, and Reporting is for analytics - none of these handle process state persistence.

Multiple choice technology platforms and products
  1. Data Sets

  2. Data Fields

  3. Data files

  4. Data Objects

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

In Oracle BAM (Business Activity Monitoring), the BAM Adapter publishes data to Data Objects. Data Objects are the primary entities in BAM that store and organize incoming data for reporting and analytics. Data Sets, Data Fields, and Data files are not the correct terminology - BAM's data model is built around Data Objects which contain Data Fields and can be organized into Data Sets, but the publish destination is the Data Object itself.

Multiple choice technology platforms and products
  1. Instals the backend database for Oracle SOA Suite

  2. Creates the metadata repositories and schemas for various components within Oracle SOA Suite

  3. Configures the back end database for Oracle SOA Suite

  4. None of the above

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

Oracle's Repository Creation Utility (RCU) creates the database schemas and metadata repositories required by various Oracle Fusion Middleware components, including Oracle SOA Suite. It does not install or configure the actual underlying database server software.

Multiple choice technology packaged enterprise solutions
  1. recalculate page field values

  2. change the appearance of page controls

  3. perform other processing that results from a field change other than data validation

  4. all the above

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

FieldChange PeopleCode executes immediately after a field value is modified (and passes validation). It is widely used to recalculate other fields on the page, dynamically alter the visual appearance of controls, or perform non-validation processing triggered by the user's action.

Multiple choice technology packaged enterprise solutions
  1. FieldChange event

  2. FieldDefault event

  3. FieldEdit event

  4. FieldFormula event

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

FieldEdit PeopleCode is specifically designed to validate values entered into a page field, triggering an error or warning if validation fails. Other events serve different roles: FieldChange handles post-validation logic, FieldDefault sets initial values, and FieldFormula houses reusable user functions.

Multiple choice technology packaged enterprise solutions
  1. previous

  2. next

  3. default

  4. NULL

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

FieldDefault PeopleCode fires when a page is first displayed, allowing you to programmatically set initial default values for fields. This is different from FieldFormula or FieldChange events - FieldDefault only runs once at initial display, not during row insert or subsequent field edits.

Multiple choice technology platforms and products
  1. Android:state_checked=”true”

  2. android: android:state_checked=”true”

  3. android:state=”true”

  4. android:android:state=”true”

  5. None of above

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

The programmatic call cbox.setChecked(true) does not map to any of the standard built-in XML attributes provided in the incorrect options, making 'None of above' the correct choice since Android uses android:checked=true for XML state initialization.

Multiple choice technology
  1. Object Explorer only

  2. Object Diagram and Object Explorer

  3. Repository only

  4. Object Diagram only

  5. Object Diagram and Repository

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

Object diagrams provide a visual representation of object instances and their relationships at a specific point in time. Object Explorer allows navigation and modification of objects within a modeling environment. Together, these tools enable comprehensive modification of both objects and their relationships.

Multiple choice technology
  1. Pie chart

  2. List

  3. Bar Chart

  4. Line chart

  5. Layout

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

Query Studio displays queried data in a list format by default, which presents data in rows and columns similar to a spreadsheet. This is the simplest and most common way to view raw query results. Charts and other visualizations must be explicitly created after the initial data display.

Multiple choice technology
  1. A report specification

  2. A development model from Framework Manager.

  3. The runtime version of a Framework Manager model.

  4. A file that contains query subjects externalized from Framework Manager.

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

Report Studio authors access the runtime version of a Framework Manager model through packages. The runtime version contains published metadata from Framework Manager optimized for report authoring. Authors cannot access development models or externalized files directly.

Multiple choice technology
  1. Source Tab

  2. Data Item Tab

  3. Toolbox Tab

  4. Properties Tab

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

The Insertable Objects pane in IBM Cognos Report Studio has three main tabs: Source, Data Item, and Toolbox. The Source tab provides access to available data sources, the Data Item tab contains data items that can be added to reports, and the Toolbox tab contains tools and objects for report design. The Properties tab is not part of the Insertable Objects pane - it's a separate panel.

Multiple choice technology platforms and products
  1. method

  2. component

  3. procedure

  4. all of the above

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

Automatic activities in workflow systems can be implemented using different strategies: methods (functions or procedures), components (reusable software modules), or procedures (defined sequences of steps). 'All of the above' is correct because all three represent valid implementation approaches for automating activities in business process management systems.