Answer:
A)
This is an example of tight coupling since the class Working has to have an idea of how Person is implemented to complete its own implementation.
B)
Any change in the Person class would require a change in the working class too.
C)
CODE
class Person {
int personID, age;
String fName, middleName, lastName;
public int getAge() {
return age;
}
}
// end of Person class
class Working extends Person {
boolean isUnderEighteen() {
if (super.getAge() <18) {
System.out.println("The person is under age and cannot work");
return true;
}
else {
System.out.println("The person can legitimately work");
return false;
}
}
}
Explanation:
I do believe it is Inventory management but I can never tell if it is the right answer. so my regards if it the wrong answer.
This is an example of <u>b2b</u> customer service.
<u>Explanation:</u>
B2b customer service is the customer service which stands for business to business. It refers to the sale that you make to the business instead of an individual consumers.
B2b customer experiences include creating a personalized. omni channel experience and building lasting relationships while providing convenient, digital solutions.
I believe the answers are:
3. B
4. D
Answer:
All team members
Explanation:
In respect of the question, the or those responsible for tracking the tasks in an agile team comprises of all the team members.
Agile in relation to task or project management, can be refer to an act of of division of project or breaking down of project or tasks into smaller unit. In my opinion, these is carried out so that all team members can be duly involved in the tasks or project.