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 web technology
  1. main task only

  2. rule tasks and functions

  3. sub flow task

  4. any task in rule flow

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

Initial actions can be defined specifically in sub-flow tasks within a rule flow. They are not limited to main tasks only (option A), nor can they be defined in all task types (option D). Rule tasks and functions (option B) have their own specific action definition mechanisms.

Multiple choice technology web technology
  1. True

  2. False

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

Decision tables allow individual condition cells to be disabled for specific rows, meaning those conditions will not be evaluated for those particular rule rows. This provides flexibility in rule logic by allowing certain conditions to be skipped without removing the entire condition column.

Multiple choice technology platforms and products
  1. SCLM

  2. GAR Packaging

  3. KVS

  4. All the above

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

Software deployment to dbwrap environments uses GAR Packaging, which is the standard deployment mechanism for this platform. SCLM is a different deployment tool used in mainframe environments, while KVS is a key-value storage system and not a deployment tool.

Multiple choice technology programming languages
  1. Enterprise Miner

  2. SAS/ACCESS

  3. SAS/SCL

  4. SAS/CONNECT

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

SAS/ACCESS is the SAS component that provides transparent access to non-native data sources like relational databases, PC files, and enterprise data systems. Enterprise Miner is for data mining, SAS/SCL is a scripting language, and SAS/CONNECT is for remote computing.

Multiple choice technology mainframe
  1. To search the environment map when building a list of elements

  2. To search the system map when building a list of elements

  3. To search the subsystem map when building a list of elements

  4. To search the dataset when building a list of elements

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

Build Using Map searches the environment map to construct a list of elements for the build process. This is specifically the environment map, not the system map, subsystem map, or dataset.

Multiple choice technology mainframe
  1. A Version Control Tool for elevating components into production

  2. a Source Control tool that always ensures we modify the latest version of the code

  3. a Tool that allows you to automate & control the movement of code during the SDLC

  4. All the above

  5. Only Choice 1 & Choice 2

  6. None of the above

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

Endevor (often misspelled as Endeavor) is a comprehensive tool that combines version control, source control, and automation for managing code movement through the Software Development Life Cycle (SDLC). All three descriptions are accurate aspects of its functionality.

Multiple choice technology platforms and products
  1. Only when Job Finishes with out Warnings

  2. Only when Job Finishes with Warnings

  3. Only when Job Aborts

  4. All

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

After-job subroutines in DataStage execute regardless of job completion status - they run when the job finishes successfully, finishes with warnings, or aborts. This ensures cleanup and post-processing logic always executes.

Multiple choice technology testing
  1. A. Built-in

  2. B. User-defined

  3. C. User-function

  4. D. Built-in, User-defined

  5. E. Built-in, User-function

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

Environment variables in shell/operating systems come in two main types: built-in variables provided by the system (like PATH, HOME, USER) and user-defined variables created by the user. Option D correctly identifies both types. Option C is incorrect because 'User-function' is not a type of environment variable.

Multiple choice technology
  1. View

  2. Derived/Work Record

  3. SQL Table

  4. Sub record

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

Derived/Work records exist only in memory and are used for temporary storage or calculations. They have no underlying database table and don't need to be built. Views are built as SQL queries, SQL tables store actual data, and sub-records are reusable record definitions that inherit from built tables.

Multiple choice technology
  1. DB Server

  2. Application server

  3. Web server

  4. DB Server & Application Server

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

PS Query definitions are stored in the PeopleSoft Application Server, not the database server. This allows for centralized query management and security. The query metadata resides in PeopleTools tables on the application server, even though the query execution hits the database.

Multiple choice technology
  1. Database Superuser

  2. PeopleSoft Superuser

  3. Data mover superuser

  4. Security Administrator

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

In PeopleSoft Data Mover, bootstrap mode requires database-level access to initialize the system. A Database Superuser has the necessary privileges to perform bootstrap operations, while other roles like PeopleSoft Superuser or Security Administrator operate at the application level and do not have direct database access for bootstrap.

Multiple choice technology
  1. EFFDT

  2. SYSDATE

  3. ROW_ADDED_DTTM

  4. ROW_EFFDT

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

EFFDT (Effective Date) is the standard PeopleSoft field for tracking temporal data. It enables effective dating by storing different versions of records with different effective dates, allowing systems to maintain historical, current, and future data simultaneously. SYSDATE and ROW_ADDED_DTTM are audit fields, while ROW_EFFDT is not a standard field.

Multiple choice technology
  1. SavePreChange

  2. SaveEdit

  3. RowDelete

  4. SavePostChange

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

PeopleCode event firing order matters: SaveEdit validates first, then SavePreChange before database update, SavePostChange AFTER successful database update. RowDelete fires during row deletion. The question specifically asks for the event that fires AFTER the database update completes, which is SavePostChange.

Multiple choice technology web technology
  1. Defect prevention

  2. Deliverable base-lining

  3. Management reporting

  4. None of the above

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

Defect Management encompasses defect prevention, management reporting, and defect tracking through resolution cycles. Deliverable baselining is a configuration management activity for version control and release management, not part of the defect management process.