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 platforms and products
  1. Dimension

  2. Measure

  3. Detail

  4. All of the above

Reveal answer Fill a bubble to check yourself
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).

Multiple choice technology platforms and products
  1. BO Feature

  2. Universe Feature

  3. DB feature

  4. None of the above

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology testing
  1. Client server architecture

  2. Distributed architecture

  3. Stand alone applications

  4. 3 Tier applications

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology databases
  1. 1

  2. 2

  3. 3

  4. 4

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology databases
  1. Kerebos authentication

  2. Windows

  3. Mixed Mode

  4. Network Service account

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology databases
  1. SQL Server Agent

  2. Log Reader Agent

  3. SQL Server

  4. Replication Agent

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology programming languages
  1. Application of WC3 components

  2. Householding based Sorting

  3. Report Generation

  4. PDF generation

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. Reports

  2. Interfaces

  3. Forms

  4. All

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. Development -> Quality -> Production

  2. Development -> Production

  3. Quality -> Production

  4. Development -> Quality

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. Manager

  2. Basis Consultant

  3. Business Anaylst

  4. Developer

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology testing
  1. Project plan

  2. Business plan

  3. Support plan

  4. None of the above

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology programming languages
  1. Use the output cache

  2. Use the cache object

  3. Use the ASP.NET central cache

  4. Use the client cache

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology programming languages
  1. ASP.NET doesn't support server-side includes

  2. ASP.NET doesn't support server-side includes but supports server-side object tags

  3. ASP.NET doesn't server-side object tags

  4. ASP.NET support server-side includes and server-side object tags

Reveal answer Fill a bubble to check yourself
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.