DEV Community

arvind singharpuria
arvind singharpuria

Posted on

high level design vs low level design.

Lets talk about high level design vs low level design.

high level design

it refers to the overall system design. It includes the description of system architecture, database design, services, platforms and relationship among modules. It is created first before low level design

low level design

it refers to component level design process. It describes detailed information of each and every module which means it includes actual logic for every system component and it goes into each module specification. it is created after high level design.

features of High level design

  1. overall system design
  2. shows brief functionality of each module
  3. it is created by solution architect
  4. input criteria is software requirement specifications
  5. output criteria is database design, functional design and review record.

features of low level design

  1. component level design process
  2. shows detailed functional logic of the module
  3. it is created by designers and developers
  4. input criteria is high level design
  5. output criteria is program specification and unit test plan.

Low level design is very useful for going to next level of becoming a good developer. This is helpful when you are looking at requirement and you're actually thinking about how to code them out. There will be ordering, cache eviction and much more.

While high level design gives a brief overview for whole implementation process. Simply it converts the business/client requirement into high level solution.

Top comments (0)