Question

In: Computer Science

Identify common reuse practices that are employed in the requirements, design and implementation activities of a...

  1. Identify common reuse practices that are employed in the requirements, design and implementation activities of a project. Explain under what circumstances each practice is / can be employed.

b. Consider the DataSource class in Case Study 2. Explain how inheritance is intended to be used with this class. Does this represent a good use of inheritance? Explain your answer.

Solutions

Expert Solution

a)Identify common reuse practices that are employed in the requirements, design and implementation activities of a project. Explain under what circumstances each practice is / can be employed.

Reuse practices that are employed in following activities is explained below:

1.Reuse for Requirements: There are some requirements which can be reused. For the company, a list of those common requirements can be made. Whenever a new project gets started, have a look at that list of requirements. This process is called as creating the Standard Requirement Asset for the company.

Because there are some requirements which are necessary to implement for each project like security of the system, reliability of the system. So, by making a prior list, it helps in doing faster work.

Each time a new project is received, the prebuild list gives us a set of requirements and attention is paid to only other requirements which are specific to this project. It saves lots of time and labour.

Types of Reuse:

>Reuse by copy

>Reuse by linking

>Reuse by inheritance

Here a standard library is made. From this library requirements can be reused in any project. It is important to note that when the standard library is going to update then all the subsequent project should reflect the updated library of requirements.

See the attached image from diagram:

2.Reuse for Design

Reuse of design and components i.e. patterns. In this at outer level following is done:

>Application Framework is reused. Here structure of classes at the system level is copied.

>Legacy system overlapping is done in order to make an interface to older system.

>Service oriented system: If there is a use of third-party software as a component of the project, then it is copied from there. It is called as service-oriented system.

In this at inner level following is done:

>Design Patterns are reused. Design Pattern gives us a solution to common problem. So, whenever the same problem arises. the design pattern is reused among several software development.

>Models used in the project can be reused.

>Component based development employee the reuse concept.

>Object oriented design is reused.

3.Reuse for Implementation

Reuse of classes and methods i.e. code. Here following is reused:

>Program Libraries and API are reused in several project development. Library store standard methods or function, which are meant to be reused.

>Code generator helps in making code faster by reuse concept. There is several IDE's which reuse code. These IDE automatically generate code for the common application. Programmer has to write only specific code related to the project going to be made.

>Open close principal employ reuse because it ensures that software is open for extension but close for modification.

>Dependency Module should not have dependency on one another.

>Interface segregation should be present there.

>Single Responsibility One class do one task.

>Object oriented programming for reuse. Class, encapsulation, interfaces, component, modules, packages, inheritance, all these concept support reuse of code. It avoids duplicity in code.

==============================================================================================================================================================================

b. Consider the Data Source class in Case Study 2. Explain how inheritance is intended to be used with this class. Does this represent a good use of inheritance? Explain your answer.

Point to be Noted Here Data source class is not provided by you in the question in Case Study 2. Question is incomplete. I will explain in general.

Use of Inheritance:

Inheritance is used in the case when we want to create a class which require some methods of a predefined class. Then don’t write the whole code again. There is a concept inheritance, in this, all the previous code is directly inherited in the new class. And new methods of the new class are defined in the new class.

Previous class is called as base class and new class is called as derived class.

Inheritance is used in two cases;

1. When we want to reuse base class.

2. When we want to add some more functionality in the base class.

Point to be noted: Now check in case study 2, whether there is a concept of reuse or new functionality/method is added to the base class.

Good use of Inheritance:

If one of the cases of inheritance is present in case study 2 then it is the good example of inheritance. Means

derived class has some new method in it.

For Example:

class Base {
 void method() {
   }
}

class Derived extends Base {
 void method1() {
 }
}

public class main {
  Derived d = new derived();
  s.method();
  s.method1();

}

Explanation:

In this extend keyword is used for inheritance. Here derived class is using method of base class.So, it is good example of inheritance.

So, check these point in your question. It is very easy to find out.

==============================================================================================================================================================================


Related Solutions

Identify common reuse practices that are employed in the requirements, design and implementation activities of a...
Identify common reuse practices that are employed in the requirements, design and implementation activities of a project. Explain under what circumstances each practice is / can be employed.
Identify common reuse practices that are employed in the requirements, design and implementation activities of a...
Identify common reuse practices that are employed in the requirements, design and implementation activities of a project. Explain under what circumstances each practice is / can be employed.
1. Implement a method that meets the following requirements: (a) Do not reuse any code for...
1. Implement a method that meets the following requirements: (a) Do not reuse any code for the following: i. Try to write this method with as few lines of code as you can ii. Sorts a group of three integers, x,y and z, into decreasing order (they do not have to be in a sequence). iii. Assume the value in x is less than the value in z. You can also assume there are no duplicates among x, y and...
e-business course Create the implementation plan.for eBay company Identify the activities to be undertaken. List the...
e-business course Create the implementation plan.for eBay company Identify the activities to be undertaken. List the possible risks and possible measures to address them. typied answer please
e-busniss course Create the implementation plan for Amazon company Identify the activities to be undertaken. List...
e-busniss course Create the implementation plan for Amazon company Identify the activities to be undertaken. List the possible risks and possible measures to address them
The systems requirements in a software project includes the categories of primary requirements, derived requirements, design...
The systems requirements in a software project includes the categories of primary requirements, derived requirements, design constraints, and design goals. Briefly explain each category and how it is different from the other categories.
why is it difficult to saparate policy design and implementation
why is it difficult to saparate policy design and implementation
Programs, guidelines, practices & activities followed for Social Enterprise.
Programs, guidelines, practices & activities followed for Social Enterprise.
How are the requirements for a design project developed?
How are the requirements for a design project developed?
In the implementation of a cache replacement policies, some write policies are employed. Explain two of...
In the implementation of a cache replacement policies, some write policies are employed. Explain two of them. What is the relevance of a dirty block or bit in cache replacement policies?
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT