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. Activity defenition

  2. Transaction defenition

  3. FPS defenition

  4. Program defenition

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

In the Hogan CICS environment, the Transaction definition is the first element triggered when you enter a transaction name or screen identifier. This transaction definition then points to the Program, which contains Activity definitions. The 24th line reference is specific to Hogan screen entry conventions.

Multiple choice technology databases
  1. Input

  2. Variable

  3. Return

  4. Output

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

The Return port (R) is specific to unconnected Lookup transformations - it returns the lookup value to the calling expression. Connected lookups use Input/Output/Lookup ports in the data flow. The Return port does not exist in connected lookup configuration because connected lookups pass data through the pipeline.

Multiple choice technology web technology
  1. Data Base Administration

  2. Application deployment on the Desktop

  3. Technical Consultation

  4. Both A&B

  5. 3rd Party vendor support

  6. A,B and C

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

The SEG team's scope does NOT include Database Administration or Application deployment on Desktop systems. DBA work is typically handled by a dedicated database team, and desktop application deployment falls under end-user computing or desktop support teams. SEG focuses on server-side application deployment and technical consultation, while third-party vendor coordination may or may not be within their scope depending on the organization.

Multiple choice technology platforms and products
  1. True

  2. False

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

Rule Resolution in Pega is a fundamental mechanism that determines which rule instance to execute at runtime. It DOES apply to Rule-HTML-Property rules (along with most other rule types) to select the appropriate version based on class, ruleset, and other criteria. The statement is correct.

Multiple choice technology platforms and products
  1. Process Commander

  2. Process Architect

  3. Project Methodology

  4. SmartBuild

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

SmartBuild is a structured methodology in Pega Process Commander that provides a 14-step sequence for developing BPM and BRE solutions. Process Commander is the platform itself, Process Architect is a design tool, and Project Methodology is a generic term - none are specific 14-step methodologies.

Multiple choice technology platforms and products
  1. Rulesets

  2. Flow actions

  3. Forms

  4. Activities

  5. Correspondence

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

Activities are the executable rules in Process Commander that perform automated processing steps - they are the 'muscles' that power the application. Rulesets are containers for rules, flow actions control UI navigation, forms are for user interface, and correspondence handles template-based communications.

Multiple choice technology platforms and products
  1. Fragments

  2. text files

  3. streams

  4. harnesses

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

In Pega, text file rules (Rule-File-Text) store static content like CSS style sheets, JavaScript files, or images. These rules are cached and served directly by the web server, bypass rule resolution during execution, and optimize performance compared to dynamic HTML fragments or harnesses.

Multiple choice technology platforms and products
  1. Correspondence

  2. Inbound/Outbound e-mail

  3. Notification by phone, text or pager

  4. Directed Web Access

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

SmartBuild Step 10 focuses on adding communication capabilities to applications, with correspondence being the primary feature implemented - the ability to generate and manage correspondence documents and communications.

Multiple choice technology platforms and products
  1. Rule-HTML-Section

  2. Rule-HTML

  3. Rule-Section-HTML

  4. Rule-Obj-Section

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

In Pega's rule hierarchy, section rules are Rule-HTML-Section type. They contain HTML and markup to define reusable user interface sections that can be included in harnesses and other sections.

Multiple choice technology platforms and products
  1. Rule-Obj-Flow

  2. Rule-Activity

  3. Rule-Obj-Activity

  4. They are each separate rule types

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

Router, Notify, and Utility shapes in Pega flows are all based on the Rule-Obj-Activity rule type. These are technically specialized flow shapes that internally invoke activities. In the Security tab of an Activity rule, you can see that Router, Notify, and Utility are all listed as activity-based rule types. They are not separate rule types from Rule-Obj-Activity - they are specialized implementations that use activities as their foundation.

Multiple choice technology web technology
    1. Create different Lists to different Audience with the required metadata as columns
    1. Create a Single list and attach multiple content types
    1. Create Site Columns with access privileges to the audience and add them to the List
    1. This is not possible with MOSS
Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

SharePoint content types allow different document categories (like contracts, proposals, reports) to have distinct metadata columns within the same document library. Each content type defines its own fields, and users select the appropriate content type when uploading. Creating separate lists (option A) complicates management, while site columns (option C) share the same schema across all documents.

Multiple choice technology web technology
  1. A,B,C

  2. B, C , D

  3. A,B, D

  4. A,C,B

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

Statements a, b, and d are correct. Site definitions are stored on the front-end web server's hard drive, while site templates are stored in the content database. Site definitions are highly extensible and can provision multiple web instances, whereas site templates are limited and harder to extend programmatically.

Multiple choice technology testing
  1. 1.Release from Deployment 2.Keep a system running 3.Bring back a system to stable state

  2. 1.Configure a system 2.Go live 3.Support a system

  3. 1.Ensure Deployment 2.Environment readiness 2.Go-Live and support

  4. 1.Acceptance from Deployment 2.Perform OAT 3.keep a system running

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

Production management encompasses three core operational functions: releasing systems from deployment, maintaining system stability during operation, and restoring systems to a stable state when issues occur. These represent the full lifecycle of keeping production systems running and recovering from failures.

Multiple choice technology platforms and products
  1. Repository server name and port number

  2. Repository server name

  3. Repository server name and host name

  4. Host name and port number

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

The Informatica Repository Server is identified by its host name and port number, not by its repository server name alone. The host name specifies the machine where the server runs, and the port number is the communication endpoint. The repository server name is an internal identifier, not used for connection.

Multiple choice technology databases
  1. basicHttpBinding

  2. wsHttpBindging

  3. webHttpBinding

  4. All of the above

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

WCF's webHttpBinding is specifically designed for RESTful services, enabling communication with XML or JSON payloads, which makes it ideal for ASP.NET AJAX clients. The basicHttpBinding and wsHttpBinding are built for SOAP-based web services, which are less suitable for standard Ajax clients.