Multiple choice technology web technology

If we want to avoid duplicate coding in view and separate out view content and view navigation we should use ________ design pattern

  1. Intercepting Filter

  2. Front Controller

  3. Data Acces Object

  4. Business Delegate

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The Front Controller pattern centralizes request handling and separates view content from view navigation. A single controller receives all requests, delegates to appropriate handlers, and manages view selection logic. This avoids duplicating navigation code across multiple views. Intercepting Filter handles pre/post processing, Data Access Object abstracts persistence, and Business Delegate reduces coupling between presentation and business tiers.