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
-
Dimension
-
Measure
-
Detail
-
All of the above
D
Correct answer
Explanation
Business Objects Universes contain three primary object types: Dimensions (descriptive attributes like names or categories), Measures (numeric aggregations like revenue or count), and Details (additional context objects like descriptions).
-
BO Feature
-
Universe Feature
-
DB feature
-
None of the above
A
Correct answer
Explanation
In SAP BusinessObjects, aggregate projection is a metadata feature defined on measure objects within a Universe. It dictates how the BusinessObjects reporting engine (like Web Intelligence) automatically aggregates measure values locally when dimensions are changed or removed from a report. Distractors like database features refer to physical database settings, not BO configuration.
A
Correct answer
Explanation
Both Release Trees and Requirement Trees in Quality Center involve the same 3-step definition process: creating the folder structure, defining the entities, and establishing parent-child relationships. The process is symmetrical for both tree types.
-
Client server architecture
-
Distributed architecture
-
Stand alone applications
-
3 Tier applications
C
Correct answer
Explanation
Standalone applications running on a single machine without network/server components have minimal performance testing scope. The other options (client-server, distributed, 3-tier) all involve multiple components, network communication, and concurrent users - key aspects for performance testing.
A
Correct answer
Explanation
SQL Server allows only ONE unnamed default instance per server. The default instance is identified by the computer name alone without any additional instance name. However, you can install multiple named instances on the same server (each with a unique instance name), but only one can be the default instance.
-
Kerebos authentication
-
Windows
-
Mixed Mode
-
Network Service account
C
Correct answer
Explanation
Mixed Mode authentication allows both Windows authentication and SQL Server authentication to be used to connect to the database. Windows mode only permits Windows logins, while Kerberos and Network Service are not database authentication modes but rather authentication protocols or service accounts.
-
SQL Server Agent
-
Log Reader Agent
-
SQL Server
-
Replication Agent
A,C
Correct answer
Explanation
In SQL Server 2005, the database engine service (SQL Server) and the SQL Server Agent run as independent Windows services, requiring their own distinct service account configuration. Log Reader and Replication agents run as jobs/sub-processes rather than standalone services.
-
Application of WC3 components
-
Householding based Sorting
-
Report Generation
-
PDF generation
A,B
Correct answer
Explanation
M1 processing focuses on two core tasks: applying WC3 components (likely a data transformation or validation framework) and householding-based sorting (grouping related records together). Report generation and PDF creation are downstream tasks, not core M1 processing functions.
-
Reports
-
Interfaces
-
Forms
-
All
D
Correct answer
Explanation
SAP development encompasses three main areas: Reports (data extraction and presentation), Interfaces (integration between SAP and external systems), and Forms (documents and layouts). All three are core development activities in SAP environments.
-
Development -> Quality -> Production
-
Development -> Production
-
Quality -> Production
-
Development -> Quality
A
Correct answer
Explanation
SAP follows a three-system landscape where objects are first developed in the Development system, then tested in the Quality Assurance system, and finally deployed to the Production system. This ensures proper testing and validation before changes reach live production environments. The other options skip critical testing phases.
-
Manager
-
Basis Consultant
-
Business Anaylst
-
Developer
D
Correct answer
Explanation
The developer is responsible for creating the transport request in SAP. This is because the developer is the one making changes to objects and needs to bundle those changes into a transport request that can be moved through the system landscape.
-
ItemDeleted
-
ItemDeleting
-
ItemUpdated
-
ItemUpdating
A,C
Correct answer
Explanation
Events ending in -ed (ItemDeleted, ItemUpdated) are asynchronous and fire after the action completes. Events ending in -ing (ItemDeleting, ItemUpdating) are synchronous and fire before the action, allowing cancellation.
-
Project plan
-
Business plan
-
Support plan
-
None of the above
A
Correct answer
Explanation
The project plan serves as the primary input for developing a test plan, detailing milestones, resource availability, scope, and schedules. While business goals exist in a business plan, technical testing strategies, timelines, and scope boundaries are specifically derived from the project planning documentation.
-
Use the output cache
-
Use the cache object
-
Use the ASP.NET central cache
-
Use the client cache
A
Correct answer
Explanation
Output caching stores the fully rendered HTML page, completely avoiding database queries and server-side page processing on subsequent requests. The cache object (data caching) still requires page rendering overhead, while ASP.NET central cache is not a standard term.
-
ASP.NET doesn't support server-side includes
-
ASP.NET doesn't support server-side includes but supports server-side object tags
-
ASP.NET doesn't server-side object tags
-
ASP.NET support server-side includes and server-side object tags
D
Correct answer
Explanation
ASP.NET maintains backward compatibility by supporting legacy server-side includes alongside server-side object tags to declare and instantiate COM components.