Test 2.docx
Document Details
Uploaded by BrotherlyVitality
Full Transcript
Which event in agile software development has the attendance from business clients? Sprint review What are the three agile artifacts? Product backlog, sprint backlog, and increments User stories are often measured by ___ and sprint tasks are often measured by _____. Story points, hours Which of the...
Which event in agile software development has the attendance from business clients? Sprint review What are the three agile artifacts? Product backlog, sprint backlog, and increments User stories are often measured by ___ and sprint tasks are often measured by _____. Story points, hours Which of the following shows the correct sequence of the agile events? Sprint planning meeting, daily scrum, sprint review, sprint retrospective. If you create an array of the int data type, the elemtns in the array must all be ___ type. Int What is the data type for an array that can hold both int and string? Object What is the concern if you create an object type array and use it to hold integers? It takes time to convert an int to an object. Which of the following is a concern if an object array is used to hold 100 student names? It is not type-safe The ___ code will access only the memory locations it is authories to. Type-safe C# ____ is a programming technique that allows a class to work on a type, without specifying which type until an object is created Generics Which of the following is a benefit of using generics in C#? Code performs better Which of the following is a benefit of using generics in C#? Code is type-safe Which of the following is a benefit of using generics in C#? Code is reusable. Which of the following is not a benefit of using generics in C#? Code is concise. A generic class is not limited to work on just one type. It can be created to work on many types. Which of the following is an example of a generic class that can work on two types? Class GenericClassName<T,S> {} If a class contains a generic method____. The class can be generic or nongeneric Which of the following is a correct way to create a generic method in C#? Public void MethodName<E>() The ____ is/are a description of what the software must do and how well it must do it. User requirements Which of the following is NOT a reason for the difficulty in getting the right user requirements? Users are crazy sometimes. The user requirements usually include facts about the ___, the ___ that the new system will support, and fact about the ____. Current system, organization, user expectations To mitigate the difficulties of getting the right user requirements, agile methodologies implement user requirements ____ and ______. Incrementally, iteratively Which of the following is not a synonym of backlog grooming? Product backlog Which of the following is usually not a part of a backlog grooming metting? Cutting all stories into smaller pieces until no further break up is possible Which of the following is correct about the user stories in the product backlog? User stories should be relevant, prioritized detailed, and their points estimated appropriately according to the priority level _______ identifies the current status of the enterprise, its desired goals and objectives and how to achieve those goals while enabling the enterprise to create more value for its stakeholders. Strategy analysis Strategy analysis often begins with the enterprise ____ mission statement Which of the following is not a step-in strategy analysis? Avoid the uncertainties involved in the change from current state to future state. Which of the following is a principle of just-in-time requirements? Requirements should only be identified for the current spint. Which of the following is a principle of just-in-time requirements? The requiements should only be detailed enough for the team to complete the sprint The objective of just-in-time requirement is ____. Value focused Building the product backlog should be a process that the ____ and the ____ come together to develop a shared understanding of the needs of the enterprise.