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
  1. Designing Jobs

  2. Monitoring Jobs

  3. Creation/Deletion of Projects

  4. Import/Export Jobs

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

The DataStage Administrator role focuses on system-level management tasks including creating and deleting projects, managing users, and configuring system settings. Job design is done by developers, monitoring by operators, and import/export functions are available in Designer. The Administrator tool is specifically for project and user management.

Multiple choice technology enterprise content management
  1. Rules File

  2. Instruction file

  3. Folder Map

  4. Presentation File

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

In Documentum Web Publisher, an Instruction File determines which modifications to an XML template should be applied to existing XML content files. Rules Files control general behavior, Folder Maps handle content placement, and Presentation Files manage styling. The Instruction File specifically guides template-to-content transformations.

Multiple choice technology enterprise content management
  1. Content Server

  2. Application Server

  3. Database Server

  4. Content or Application Server

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

SCS (Site Creation Services) Source in Documentum is installed on the Content Server. The Content Server handles content storage, management, and the SCS services for web publishing. Application Servers handle client requests, and Database Servers store metadata, but SCS Source specifically runs on the Content Server.

Multiple choice technology platforms and products
  1. True

  2. False

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

A content URI follows the format: content://authority/data_path/id. The authority uniquely identifies the content provider, data_path specifies the type of data, and id (optional) points to a specific record. In the given format, A=authority, B=data_path, and C=id - NOT 'Data_Path' and 'Id Value' as stated. The statement incorrectly capitalizes and presents these as formal names rather than descriptions.

Multiple choice technology architecture
  1. Software

  2. Tools

  3. process

  4. training

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

The question asks which area SDIS does NOT focus on. Since Software is the core product being developed, the SDIS team focuses on supporting areas: Tools, Process, and Training - all of which enhance the software community. Software itself is what these services support, not a service area itself.

Multiple choice technology architecture
  1. ASK.DEV

  2. IDEA.DEV

  3. ASK.IDEA

  4. DEV.ASK

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

DEV.ASK is described as the ultimate knowledge sharing platform for software developers at USAA, featuring over 1400 questions and an active community of more than 2000 users. The other options (ASK.DEV, IDEA.DEV, ASK.IDEA) are plausible but incorrect names for this platform.

Multiple choice technology architecture
  1. Static code Analysis

  2. Dynamic code Analysis

  3. Mistake code Analysis

  4. Compare & code Analysis tool

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

Static code Analysis is the SDIS initiative that evaluates software code complexity and other characteristics using tools like PMD (Programming Mistake Detector) to improve developer efficiency and code quality. Dynamic analysis involves running code, and the other options are not standard industry terms for this type of initiative.

Multiple choice technology architecture
  1. Workspace setup utility

  2. Profile management utility

  3. Profile reminder utility

  4. Workspace Profile utility

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

Workspace Profile utility is the SDIS feature that enables developers to capture plug-in selections in a profile, eliminating the need to repeatedly select the same options. The other options (Workspace setup utility, Profile management utility, Profile reminder utility) are descriptive but not the actual feature name.

Multiple choice technology testing
  1. Plan(P)------>Check(C)------>Act(A)----->Do(D)

  2. Plan(P)------>Do(D)------>Check(C)----->Act(A)

  3. Plan(P)------>Do(D)------>Act(A)----->Check(C)

  4. Plan(P)------>Act(A)----->DO(d)----->Check(C)

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

The standard Software Process Cycle is based on the PDCA (Plan-Do-Check-Act) cycle, also known as the Deming wheel or Shewhart cycle. The steps must proceed in the sequence: Plan, Do, Check, then Act. Other sequences deviate from this standard quality control loop.

Multiple choice technology testing
  1. Water falls model

  2. Spiral model

  3. V model

  4. Linear model

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

The V-Model requires testing activities to start alongside development. Each development phase has a corresponding testing phase - requirements analysis is validated through acceptance testing, high-level design through system testing, detailed design through integration testing, and coding through unit testing. Waterfall and Linear models are sequential with testing at the end. Spiral is iterative but not specifically structured for parallel testing.

Multiple choice technology
  1. MDB

  2. HTML

  3. XML

  4. TXT

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

IIS 7.0 application pool settings are stored in XML format in the applicationHost.config file located at %windir%\system32\inetsrv\config. This XML-based configuration replaces the IIS 6.0 metabase and provides better human readability and easier programmatic manipulation.

Multiple choice technology web technology
  1. Method with ActionResult keyword

  2. All methods

  3. All methods except non-public methods

  4. All of the above

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

By default, the controller treats all public methods as potential action methods. Non-public methods (private, protected) are not considered actions. Special attributes like [NonAction] can also exclude public methods from being actions.

Multiple choice technology web technology
  1. [Private]

  2. [NonAction]

  3. [Internal]

  4. [Protected]

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

The [NonAction] attribute prevents a public method in a controller from being invoked by a URL request, even though it's public. [Private] and [Protected] are access modifiers for class members, not MVC-specific attributes. [Internal] limits visibility to the assembly but doesn't prevent URL routing.