Your organization always stresses the importance of on-time delivery and reliability. A manager has detected that your team’s progress is too slow. They feel that your team's velocity needs to be 10% higher. The organization expects you, as the Scrum Master, to make it happen. How do you respond? (Choose two.)
A. You help management understand that it typically takes a few Sprints for a team to gradually increase the velocity up to the level expected. Meanwhile you present this to the team as a challenge and a company goal, leaving it however up to them to figure out exactly how to achieve this.
B. You educate management that it is the Scrum Team's responsibility to improve their velocity. You invite management to the next Sprint Retrospective to brainstorm on how they can improve.
C. You explain how a Scrum Team uses the velocity of a Sprint primarily to forecast work for the next Sprint, not to perfectly predict future productivity. You refer management to the Product Owner for all information concerning the progress of development.
D. You inform management of organizational impediments that prevent the Scrum Team from being more productive. You enlist their help to remove these impediments.
E. You tell management that this is not your accountability in Scrum. You direct them to the Product Owner to determine whether the forecast is accurate.
Explanation:
A) emphasizes a gradual increase in velocity, which aligns with Scrum principles of continuous improvement and team autonomy.
D) involves addressing organizational impediments, a key role of the Scrum Master, as removing obstacles is critical to improving team performance.
Universal Containers develops a Visualforce page that requires the inclusion of external JavaScript and C55 files. They want to ensure efficient loading and caching of the page. Which feature should be utilized to achieve this goal?
A. ActionFunction
B. PageBlockTable
C. Static resources
D. RemoteAction
A developer creates an application event that has triggered an infinite loop. What may have caused this problem?
A. The event handler calls a trigger
B. The event has multiple handlers registered in the project
C. An event is fired 'ontouchend' and is unhandled
D. The event is fired from a custom renderer
Explanation:
In Salesforce development, firing an event from a custom renderer can sometimes cause unintended behavior, such as infinite loops. This is because custom renderers directly control the rendering lifecycle of components, and triggering events in these renderers can lead to situations where the event repeatedly fires, causing an infinite loop.
A developer created a Lightning web component that allows users to input a text value that is used to search for Accounts by calling an Apex method. The Apex method returns a list of AccountWrappers and is called imperatively from a JavaScript event handler.
A. Add @AuraEnafcle3 to line 09.
B. Add @AuraEnabled to line 03.
C. Add @AuraEnabled to lines 11 and 12.
D. Add @AuraEnat:ei to line 01.
A dev created a class that implements the Queueable Interface as follows:
public class without sharing OrderQueueableJob implements Queueable{
public void execute(QueueableContext context){
// logic
System.enqueueJob(New OrderQueueableJob));
}
}
As part of the deployment process, the dev is asked to create a corresponding test class. Which two actions should the dev take to successfully execute the test class?
A. Implement seeAllData=True to ensure the Queueable job is able to run in bulk mode.
B. Ensure the running user of the test class has, at least, View All permissions on the Order object.
C. Enclose System.enqueuJob(new OrderQueueableJob) within Test.startTest() and Test.stopTest()
D. Implement Test. isRunningTest() to prevent chaining jobs during test execution.
Page 5 out of 39 Pages |
Previous |