Full Transcript

During the ____ stage, group members don’t talk to each other or cooperate much. Members are not certain about their roles and often look outside the group for guidance. Form During the ____ stage, members have some conflict minset. On one hand, they know the benefits of agile software development....

During the ____ stage, group members don’t talk to each other or cooperate much. Members are not certain about their roles and often look outside the group for guidance. Form During the ____ stage, members have some conflict minset. On one hand, they know the benefits of agile software development. On the other hand, they still have their old habit of working on their own. Storming In the ____ stage, members start to worry about the differences they have from the rest of the team and want to be part of the team. Norming Team members at the ____ stage is good at agile and motivated to achieve the common goal of the team. Performing Team members that are mature and take initiate, work for themselves and don’t need the leader or managers to assign the job describes which characteristic of the self-organizing team? Autonomous The team members are interested in what they are doing. They have the desire and energy to be committed to the job. Which characteristic of the self-organizing team is described? Motivation _____ is a process in which a group of people work collaboratively for common goal. Teamwork The belief in the ability and strength of other team members describes which characteristics of a self-organizing team? Trust The ____ of a team member means that the member actively participates in the team activities by choice. Commitment A meeting where all members introduce themselves, mentioning things such as their hometown, number of family members, hobbies, and books read is an exercise that the team can use to overcome the ___ dysfunction. Absence of trust Each member identifies the single most important contribution of every other member and also one of their impediments is an exercise that the team can practice overcoming the ____. Absence of trust Finding out the hidden disagreement among team members and letting everyone know is an exercise that the team can practice overcoming the ___ dysfunction. Fear of conflict An agile team should use language with clarity and allow all members to buy-in for any decision is an exercise that the team can practice overcoming the ____ dysfunction. Lack of commitment To publicly announce the team goal (e.g. sprint goal) and record the progress of the team embers (e.g. kanban and burn down chart) is an exercise that the team can practice to overcome the ____ dysfunctions. Avoidance of accountability Emphasis of team goals and to individual goals is an exercise that the team can practice overcoming the ___ dysfunction. Inattention to results Which of the following is a benefit of using variables over using literal value? With using variables, change on formula can be made independently of other parts of code. Delegates are used to ____. Reference method Which of the following is a benefit of using variables over literal values? With using variables, there is no need for the exact values at coding time. In C#, a class is a type, and a delegate is a ____. Type A delegate provides a conveninent way to implement functionality at ____. Runtime Which of the following delegate declaration, which method can be assigned to a delegate instance? Public int method1(int a, double b) {} Which of the following is the correct way to assign a method to delegate instance? myDelegate = Method1; Suppose a delegate is declared: Public delegate int MyDelegate(int m, int n); And a method called Multiply() is assigned to an instance of the delegate called myDelegate. The code used to invoke a delegate will look lie: Int z = myDelegate(3, 5); At the run time, the call to a delegate code will actually invoke the ___ the delegate represents. Method When declaring a delegate, the delegate is usually located ____. Inside a namespace and outside a class A method can receive reference of other methods as a parameter. This allows separation of ___ between classes. Functionality A delegate can represent multiple methods at the same time. This is called ___. Multicast delegates When using the windows forms enclosed event handler delegate to make an event work you need a method with two parameters: one is the sender ___, the other is the ___. Object, EventArgs Which of the following is the way to declare an event in C# assuming a delegate called UpdateGpaDelegate exists? Public event UpdateGpaDelegate UpdateGpaEvent; Which of the following statements subscribes a method to an event? UpdateGpaEvent += onUpdate; When working on Windows Forms applications, you don’t declare a delegate because ____. Windows Forms come with a built-in delegate called EventHandler

Use Quizgecko on...
Browser
Browser