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
-
Respones.expires=100
-
Respones.Buffer=true
-
Respones.Buffer=false
-
Respones.Buffer=-1
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.
-
Walkthrough
-
Inspection
-
management review
-
post project review
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.
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.
-
Tabular Report
-
Form Report
-
Matrix Report
-
Single Query Report
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.
-
Groups
-
Links
-
Fields
-
Summaries
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.
-
Data model
-
Data Query
-
Data wizard
-
Data fields
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.
-
Goal-oriented
-
Manual
-
Run until complete
-
Real-life schedule
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.
-
Creating, Viewing, and Modifying
-
Creating Only
-
Viewing Only
-
Creating and Viewing
A
Correct answer
Explanation
Oracle Workflow Builder is a complete graphical IDE that allows developers to create new workflow definitions, view existing ones, and modify them. It supports all three operations, not just creation or viewing alone.
-
SOLACE
-
SOLAR
-
SIGMARG
-
BIDS
A,B,C
Correct answer
Explanation
SOLACE, SOLAR, and SIGMARG are methodologies and frameworks relevant to Enterprise Content Management (ECM) systems. These frameworks provide structured approaches to managing content, processes, and lifecycle. BIDS is not a standard ECM methodology.
-
Integrity, Curiosity, Reliability (ICS)
-
Memory, Decisive, Authoritarian (MDA)
-
Reliability, Availability, Serviceability (RAS)
-
Reliability, Sensitive, Organized (RSO)
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.
-
Define Rules
-
Ability to Store, version, and manage the rules
-
Tools for Testing, Simulating and verify the rules
-
Ability to package and deploy the rules
-
All of the above
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.
-
Appmange and hawk agent
-
Domainutility and appmanage
-
Builder and hawk agent
-
Dbtest and Builder
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.
-
JDBC query used for Select statements, JDBC Update palette used for Altering table
-
Both are same
-
None of the above
-
BW doesnot support JDBC related queries
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.
-
DFHBMSCA copybook
-
DFHEIBLK copy book
-
SQLCA
-
None of the above
B
Correct answer
Explanation
In CICS programming, fields like EIBCPOSN, EIBRESP, and EIBRSRCE are part of the Execute Interface Block, which is defined by the DFHEIBLK copybook.
-
Precompile
-
Package
-
Bind
-
Plan
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.