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
-
Activity defenition
-
Transaction defenition
-
FPS defenition
-
Program defenition
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.
-
Input
-
Variable
-
Return
-
Output
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.
-
Data Base Administration
-
Application deployment on the Desktop
-
Technical Consultation
-
Both A&B
-
3rd Party vendor support
-
A,B and C
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.
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.
-
Process Commander
-
Process Architect
-
Project Methodology
-
SmartBuild
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.
-
Rulesets
-
Flow actions
-
Forms
-
Activities
-
Correspondence
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.
-
Fragments
-
text files
-
streams
-
harnesses
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.
-
Correspondence
-
Inbound/Outbound e-mail
-
Notification by phone, text or pager
-
Directed Web Access
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.
-
Rule-HTML-Section
-
Rule-HTML
-
Rule-Section-HTML
-
Rule-Obj-Section
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.
-
Rule-Obj-Flow
-
Rule-Activity
-
Rule-Obj-Activity
-
They are each separate rule types
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.
-
- Create different Lists to different Audience with the required metadata as columns
-
- Create a Single list and attach multiple content types
-
- Create Site Columns with access privileges to the audience and add them to the List
-
- This is not possible with MOSS
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.
-
A,B,C
-
B, C , D
-
A,B, D
-
A,C,B
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.
-
1.Release from Deployment 2.Keep a system running 3.Bring back a system to stable state
-
1.Configure a system 2.Go live 3.Support a system
-
1.Ensure Deployment 2.Environment readiness 2.Go-Live and support
-
1.Acceptance from Deployment 2.Perform OAT 3.keep a system running
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.
-
Repository server name and port number
-
Repository server name
-
Repository server name and host name
-
Host name and port number
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.
-
basicHttpBinding
-
wsHttpBindging
-
webHttpBinding
-
All of the above
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.