Professional Software Engineering Master Exam, Exams of Technology

The Professional Software Engineering Master Exam evaluates advanced skills in software engineering. Topics include system architecture, software development lifecycle, software testing, project management, and applying engineering principles to create high-quality, maintainable software systems.

Typology: Exams

2024/2025

Available from 05/23/2025

nicky-jone
nicky-jone 🇮🇳

2.9

(43)

28K documents

1 / 153

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Professional Software Engineering Master
Exam
Question 1. Which SDLC model is most suitable for projects with well-defined
requirements and minimal changes expected during development?
A) Agile
B) Waterfall
C) Spiral
D) V-Model
Answer: B
Explanation: The Waterfall model is best suited for projects with clear, stable
requirements, as it follows a linear sequence of phases with minimal
flexibility for changes once a phase is completed.
Question 2. In the context of SDLC phases, which phase involves creating
detailed diagrams and specifications to guide the development process?
A) Requirement gathering
B) Design
C) Development
D) Testing
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe
pff
pf12
pf13
pf14
pf15
pf16
pf17
pf18
pf19
pf1a
pf1b
pf1c
pf1d
pf1e
pf1f
pf20
pf21
pf22
pf23
pf24
pf25
pf26
pf27
pf28
pf29
pf2a
pf2b
pf2c
pf2d
pf2e
pf2f
pf30
pf31
pf32
pf33
pf34
pf35
pf36
pf37
pf38
pf39
pf3a
pf3b
pf3c
pf3d
pf3e
pf3f
pf40
pf41
pf42
pf43
pf44
pf45
pf46
pf47
pf48
pf49
pf4a
pf4b
pf4c
pf4d
pf4e
pf4f
pf50
pf51
pf52
pf53
pf54
pf55
pf56
pf57
pf58
pf59
pf5a
pf5b
pf5c
pf5d
pf5e
pf5f
pf60
pf61
pf62
pf63
pf64

Partial preview of the text

Download Professional Software Engineering Master Exam and more Exams Technology in PDF only on Docsity!

Exam

Question 1. Which SDLC model is most suitable for projects with well-defined requirements and minimal changes expected during development? A) Agile B) Waterfall C) Spiral D) V-Model Answer: B Explanation: The Waterfall model is best suited for projects with clear, stable requirements, as it follows a linear sequence of phases with minimal flexibility for changes once a phase is completed. Question 2. In the context of SDLC phases, which phase involves creating detailed diagrams and specifications to guide the development process? A) Requirement gathering B) Design C) Development D) Testing

Exam

Answer: B Explanation: The Design phase focuses on creating detailed technical specifications, architecture diagrams, and models that guide the implementation of the software. Question 3. Which development approach emphasizes iterative cycles, continuous feedback, and flexibility in requirements? A) Waterfall B) Spiral C) Agile D) V-Model Answer: C Explanation: Agile development promotes iterative cycles, frequent stakeholder feedback, and adaptability to changing requirements, contrasting with linear models like Waterfall.

Exam

Answer: C Explanation: Safety-critical systems require rigorous validation, documentation, and risk management, making models like V-Model or Spiral appropriate due to their emphasis on verification and validation. Question 6. Which principle of software design advocates hiding internal details and exposing only necessary parts? A) Modularity B) Encapsulation C) Abstraction D) Scalability Answer: B Explanation: Encapsulation involves hiding internal object details and providing access through well-defined interfaces, promoting data hiding and security.

Exam

Question 7. Which architectural pattern is best suited for applications requiring independent deployment and scalability of components? A) Layered architecture B) Monolithic architecture C) Microservices architecture D) Client-Server architecture Answer: C Explanation: Microservices architecture decomposes applications into independent, loosely coupled services that can be deployed and scaled independently. Question 8. Which design pattern ensures a class has only one instance and provides a global point of access to it? A) Factory B) Singleton C) Observer D) Adapter

Exam

Question 10. Which programming paradigm emphasizes immutability, first- class functions, and higher-order functions? A) Procedural B) Object-oriented C) Functional D) Concurrent Answer: C Explanation: Functional programming focuses on pure functions, immutable data, and higher-order functions to promote declarative code and easier reasoning. Question 11. Which language is primarily procedural but supports object- oriented features and is widely used for system scripting? A) C++ B) Python C) Java D) JavaScript

Exam

Answer: B Explanation: Python is a high-level, multi-paradigm language supporting procedural, object-oriented, and functional programming, commonly used for scripting and automation. Question 12. In data structures, which structure provides fast lookup, insertion, and deletion based on keys? A) Array B) Linked list C) Hash table D) Tree Answer: C Explanation: Hash tables utilize hash functions to provide average-case constant-time complexity for key-based operations like lookup, insertion, and deletion.

Exam

Answer: B Explanation: Binary search operates in logarithmic time in the worst case because it halves the search space with each comparison. Question 15. Which testing type involves testing individual units or components in isolation? A) System testing B) Integration testing C) Unit testing D) Acceptance testing Answer: C Explanation: Unit testing focuses on testing individual functions or classes in isolation to ensure they work as intended. Question 16. Which testing approach is driven by writing tests before the actual code, promoting better design and test coverage?

Exam

A) Manual testing B) Test-driven development (TDD) C) Black-box testing D) Regression testing Answer: B Explanation: TDD involves writing tests prior to coding, which guides development, ensures test coverage, and facilitates refactoring. Question 17. Which CI/CD practice involves automatically building and testing code changes to detect integration issues early? A) Continuous deployment B) Continuous integration C) Continuous delivery D) Manual testing Answer: B Explanation: Continuous Integration automatically builds and tests code changes as they are committed, catching integration problems early.

Exam

Answer: C Explanation: Prototyping involves creating preliminary versions of the system to clarify requirements through stakeholder demonstrations. Question 20. Which estimation technique calculates effort based on the number of function points, considering the complexity of software features? A) COCOMO B) Function point analysis C) Use case points D) Expert judgment Answer: B Explanation: Function point analysis measures software size based on functional features and complexity, aiding effort estimation. Question 21. Which version control system is distributed, allowing each user to have a full copy of the repository?

Exam

A) SVN

B) CVS

C) Git D) Perforce Answer: C Explanation: Git is a distributed version control system where each user maintains a complete copy of the repository, enabling offline work and branching. Question 22. In version control, which strategy involves creating separate lines of development that can be merged later? A) Trunk-based development B) Branching and merging C) Continuous deployment D) Locking files Answer: B

Exam

A) Encryption B) Hashing C) Digital signatures D) Public key cryptography Answer: B Explanation: Hashing generates a unique fixed-size digest of data, used for verifying data integrity without revealing the original data. Question 25. Which access control model grants permissions based on user roles within an organization? A) Discretionary Access Control (DAC) B) Role-Based Access Control (RBAC) C) Mandatory Access Control (MAC) D) Attribute-Based Access Control (ABAC) Answer: B Explanation: RBAC assigns permissions to roles rather than individual users, simplifying access management aligned with organizational roles.

Exam

Question 26. Which type of database model organizes data into collections of documents, typically using JSON or BSON formats? A) Relational B) NoSQL C) Graph D) Time-series Answer: B Explanation: NoSQL document databases store data as documents, allowing flexible schemas, scalability, and easy storage of semi-structured data. Question 27. Which SQL command is used to retrieve data from a database? A) INSERT B) UPDATE C) SELECT D) DELETE Answer: C

Exam

A) IaaS B) PaaS C) SaaS D) FaaS Answer: B Explanation: Platform-as-a-Service (PaaS) offers a platform allowing users to develop, run, and manage applications without infrastructure management. Question 30. Which container orchestration tool is most widely used for managing containerized applications at scale? A) Docker Compose B) Kubernetes C) Ansible D) Terraform Answer: B Explanation: Kubernetes is a leading orchestration platform that automates deployment, scaling, and management of containerized applications.

Exam

Question 31. Which principle of DevOps emphasizes automating infrastructure provisioning and configuration? A) Continuous deployment B) Infrastructure as Code (IaC) C) Continuous testing D) Manual deployment Answer: B Explanation: Infrastructure as Code involves automating the provisioning and management of infrastructure through code, enabling repeatability and consistency. Question 32. Which DevOps practice involves deploying code changes to production automatically after passing tests? A) Continuous integration B) Continuous delivery C) Continuous deployment