Explanation : In the pipes and filters pattern, components are
filters and connectors are pipes.
Each filter takes input in some form and produces
output in some other form,which may or may not
be similar to the input form. Hopefully, each filter
will add value to the output stream because of
processing done inside the filter. Each filter is
independent and is unaware of the up and down
stream filters. Pipes are conduits of the data
streams. Famous example of the pipes and filters
architectural pattern are UNI X shells,signal
processing systems and distributed systems
Explanation : Processor required to handle the interrupt:
1. Processor finishes the execution of the current
instruction.
2. Processor pushes the process status of L onto
the control stack.
3. Processor loads the new PC value based on
the interrupt.
4. Processor executes the interrupt service
routine.
5. Processor pops the process status of “L” from
the control stack.