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
  1. Process modeling

  2. Business modeling

  3. Data modeling

  4. None of these

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

Process modeling transforms the data objects defined in data modelling phase to achieve the information flow necessary to implement a business function.

Multiple choice
  1. Customer communication

  2. Planning

  3. Customer evaluation

  4. Risk analysis

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

This phase obtains customer feedback based on evaluation of the software representation created during the engineering stage and implemented during the installation stage.

Multiple choice
  1. Creating source database tables

  2. Creating maximum and minimum bounds

  3. Pulling all data tables in one memory block

  4. Both 2 and 3

  5. Creating an HTML page

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

Concept of data binding is Creating source data base tables for text boxes,drop down list ,radio buttons etc.

Multiple choice
  1. The upcoming exception needs more than one handler.

  2. Different upcoming exceptions can be filtered out different types of problems.

  3. Single up coming exception can be filtered out different types of problems.

  4. Different upcoming exceptions can be combined to have one problem only.

  5. None of the above

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

Exception Handlers in ASP.NET program are overlapped in many applications since different upcoming exception can be filtered out different type of problems.

Multiple choice
  1. CALL_FORM because NEW_FORM is no longer valid for Web-deployed forms due to the extra network traffic that is caused.

  2. CALL_FORM because it can be issued in Enter-Query mode and can be constrained to be Query only.

  3. CALL_FORM because the second form is invoked in a modeless state and it saves on memory resources.

  4. NEW_FORM because the second form is invoked in a modeless state and the user can navigate freely between the two running forms.

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

CALL_FORM is the correct built-in for invoking the Orders form from Customers form because it can be issued while the calling form is in Enter-Query mode, and it can be constrained to query-only mode. This is important when you want to maintain query context in the calling form. CALL_FORM opens the second form in a modal state (not modeless as option C suggests), blocking navigation to the calling form until the called form closes. Option A incorrectly claims NEW_FORM is invalid for web deployment (it works but behaves differently). Option D is incorrect because NEW_FORM replaces the calling form entirely, preventing navigation between both.

Multiple choice
  1. Clicking Step Over to step over the execution of the subprogram

  2. Opening the Stack panel, selecting the previous stack frame, and clicking Go

  3. Clicking Step Out to resume stepping through code after the subprogram is called

  4. Clicking Stop, setting a breakpoint immediately after the subprogram code is called, and running the form in debug mode again

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

Clicking Step Over to step over the execution of the subprogram

Multiple choice
  1. MTBF

  2. RMAN

  3. MTTR

  4. Evolutionary Process

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

MTTR (Mean Time To Recovery) measures the average time required to recover from a failure and restore normal operations. When management prioritizes minimizing downtime, focusing on MTTR is critical because it directly represents business disruption time. MTBF (Mean Time Between Failures) measures reliability, not recovery speed. RMAN is a tool, not a business requirement. Evolutionary Process is unrelated to backup/recovery strategy.

Multiple choice
  1. CALL_FORM because NEW_FORM is no longer valid for Web-deployed forms due to the extra network traffic that is caused.

  2. CALL_FORM because it can be issued in Enter-Query mode and can be constrained to be Query only.

  3. CALL_FORM because the second form is invoked in a modeless state and it saves on memory resources.

  4. NEW_FORM because the second form is invoked in a modeless state and the user can navigate freely between the two running forms.

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

CALL_FORM because it can be issued in Enter-Query mode and can be constrained to be Query only.