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. Respones.expires=100

  2. Respones.Buffer=true

  3. Respones.Buffer=false

  4. Respones.Buffer=-1

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

Setting Response.Buffer to false disables page buffering, allowing content to be sent to the client immediately as it's generated rather than waiting for the entire page to complete. The Expires property controls caching, not buffering behavior.

Multiple choice technology testing
  1. Walkthrough

  2. Inspection

  3. management review

  4. post project review

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

Inspection is the most formal type of peer review in software engineering. It is characterized by a structured process that includes specific roles, a formal meeting, and strictly defined entry and exit criteria to ensure quality.

Multiple choice technology programming languages
  1. JSP

  2. ASP

  3. CSS

  4. HTML

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

Oracle 9i Reports uses JSP (JavaServer Pages) technology to embed reports directly into web pages, enabling dynamic report generation within web applications. ASP is Microsoft's technology, CSS is for styling, and HTML is the markup language itself. JSP allows seamless integration of Oracle reports with Java-based web infrastructure.

Multiple choice technology programming languages
  1. Tabular Report

  2. Form Report

  3. Matrix Report

  4. Single Query Report

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

Tabular Report is the most fundamental report type, displaying data in simple rows and columns format similar to a database table. Form reports present one record per page, Matrix reports show two-dimensional data with row and column headers, while Single Query refers to a data source approach, not a report type. Tabular reports form the foundation for more complex formats.

Multiple choice technology programming languages
  1. Groups

  2. Links

  3. Fields

  4. Summaries

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

Groups organize report columns into logical sections, enabling hierarchical display and summary calculations at different levels. Fields are individual data display units, Links connect related data, and Summaries perform calculations. Groups provide the structural organization that determines how columns relate and repeat in the report.

Multiple choice technology programming languages
  1. Data model

  2. Data Query

  3. Data wizard

  4. Data fields

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

The Data model defines what data gets retrieved by specifying queries, data sources, and column definitions. It acts as the blueprint for data access, determining which tables are queried, how they're joined, and what columns are available. Data Query, Data Wizard, and Data Fields are components or tools, not the comprehensive model itself.

Multiple choice technology testing
  1. Goal-oriented

  2. Manual

  3. Run until complete

  4. Real-life schedule

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

In goal-oriented scenarios, LoadRunner automatically calculates the number of Vusers needed to achieve your performance goals (like hits per second or response time). Manual scenario requires you to explicitly define Vuser counts, while 'run until complete' and 'real-life schedule' are different scheduling modes.

Multiple choice technology mainframe
  1. Integrity, Curiosity, Reliability (ICS)

  2. Memory, Decisive, Authoritarian (MDA)

  3. Reliability, Availability, Serviceability (RAS)

  4. Reliability, Sensitive, Organized (RSO)

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

RAS stands for Reliability, Availability, and Serviceability. This is the hallmark of mainframe computing, ensuring the system remains operational (Reliability), accessible even during component failures (Availability), and easy to repair or upgrade without downtime (Serviceability). The other acronyms are fabricated in this context.

Multiple choice technology platforms and products
  1. Define Rules

  2. Ability to Store, version, and manage the rules

  3. Tools for Testing, Simulating and verify the rules

  4. Ability to package and deploy the rules

  5. All of the above

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

A complete BRMS must support the entire rules lifecycle: defining business rules, storing and versioning them in a repository, testing and simulating rule behavior, and packaging rules for deployment to production environments. All these functionalities are essential for enterprise-grade business rules management.

Multiple choice technology
  1. Appmange and hawk agent

  2. Domainutility and appmanage

  3. Builder and hawk agent

  4. Dbtest and Builder

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

TIBCO Runtime Agent provides Domain Utility for domain management and AppManage for application deployment and management. These are core utilities in the TIBCO infrastructure stack that handle configuration and operational tasks.

Multiple choice technology
  1. JDBC query used for Select statements, JDBC Update palette used for Altering table

  2. Both are same

  3. None of the above

  4. BW doesnot support JDBC related queries

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

JDBC Query palette executes SELECT statements for data retrieval, while JDBC Update palette handles data modification operations including INSERT, UPDATE, DELETE, and DDL statements. This separation follows standard database practice of separating read and write operations.

Multiple choice technology mainframe
  1. Precompile

  2. Package

  3. Bind

  4. Plan

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

The BIND step analyzes static SQL statements, determines the most efficient access paths to the data, and stores this information in a plan or package. Precompile simply converts SQL to calls, while plan and package are the outputs of bind. BIND is the optimization phase.