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 packaged enterprise solutions
  1. Project Preparation > Business Blue Print > User Acceptance > Go Live

  2. Project Preparation > Realization > Business Blue Print > Go Live

  3. Project Preparation > Business Blue print > Realization > Final Preparation > Go live and support

  4. Project Preparation > Business Blue print > Realization > Final Preparation > Data Migration > Go live and support

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

The Accelerated SAP (ASAP) methodology is structured into five sequential phases to ensure efficient ERP implementation: Project Preparation, Business Blueprint, Realization, Final Preparation, and Go-Live and Support. This standard lifecycle guides the planning, configuration, testing, and deployment of SAP systems.

Multiple choice technology architecture
  1. Model View Controller

  2. Composite Entity

  3. Fast Lane Reader

  4. View Helper

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

Fast Lane Reader is specifically designed to improve read performance for tabular data by bypassing complex EJB (Enterprise JavaBean) overhead. It directly accesses data using simpler mechanisms like JDBC, providing faster reads for simple queries. This pattern is ideal when you need quick, read-only access to tabular data without full transactional overhead.

Multiple choice technology testing
  1. the documentation is poor, so it takes longer to find out what the software is doing.

  2. wages are rising

  3. the fault has been built into more documentation,code,tests, etc

  4. none of the above

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

Faults discovered later require rework across more artifacts: code that depends on the faulty logic, tests that assumed incorrect behavior, documentation describing the wrong behavior, and potentially deployed systems. This cascade increases cost exponentially. Option A is a specific case, not the general principle.

Multiple choice technology storage
  1. Skeleton of the original report

  2. compiled XML file

  3. Plain XML file with data

  4. Report Template file structure

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

JRXML files are source XML files containing the report template structure and layout definition. They serve as the blueprint that gets compiled into .jasper files and do not contain actual report data.

Multiple choice technology testing
  1. Business Analyst

  2. Solution Designer / IT Architect

  3. Test Manager

  4. Delivery Manager

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

Business Analysts are primarily responsible for identifying and documenting the business impact of requirements or business processes. They work with stakeholders to understand business value and consequences. Option A correctly assigns this responsibility to Business Analysts, who bridge business needs and technical solutions.

Multiple choice technology testing
  1. Business Analyst

  2. Solution Designer / IT Architect

  3. Test Manager

  4. Delivery Manager

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

Solution Designers and IT Architects are primarily responsible for identifying the probability of failure for requirements or business processes. They assess technical feasibility, system constraints, and implementation complexity. Option B correctly assigns this technical risk assessment to Solution Designers/IT Architects who understand technical challenges.

Multiple choice technology platforms and products
  1. Parallel Development

  2. Multiple Releases

  3. Branch Visualization

  4. None of the above

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

Microsoft Visual Studio Team Foundation Server 2010 introduced Branch Visualization as a major new feature to help teams graphically view branching and merging relationships across projects. The other options were either present earlier or are general concepts.

Multiple choice technology platforms and products
  1. During flow execution as process conrtol advances from one task to another

  2. At the end of activity step,after invoking the method, but before any transition step

  3. Upon database commit when any object is saved to database

  4. All of the above

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

Declare rules execute at multiple points in PEGA processing. Some run during flow execution as control moves between tasks, others at activity step boundaries after method invocation but before transitions, and Declare Trigger rules specifically run when objects are committed to the database. The declare keyword provides automatic rule execution across these contexts.

Multiple choice technology platforms and products
  1. Class Structure, Properties, User Interface, Activities

  2. Class Structure, Properties, Activities,User Interface

  3. Properties, Class Structure, User Interface, Activities

  4. Class Structure, Activities,Properties, User Interface

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

SmartBuild in PEGA follows a logical development sequence starting with Class Structure (defining data model), then Properties (individual attributes), User Interface (forms and screens for user interaction), and finally Activities (business logic and processing). This sequence ensures foundational elements are established before building dependent components.