Difficulty: Easy
Correct Answer: Bit shifter
Explanation:
Introduction / Context:A digital frequency counter, whether built discretely or in HDL (VHDL/Verilog), follows a well-known architecture. The key blocks include input signal conditioning, a timing and control unit to define the sample window, a counter/accumulator to tally pulses, and a display path (register plus decoder) to present the result. This question checks recognition of an element that is not core to that architecture.
Given Data / Assumptions:
Concept / Approach:The architecture counts input edges within a precisely known gate time (sample interval) and latches the result. Decoding and display logic then show a human-readable value (often BCD to 7-segment). A “bit shifter” is useful in serial I/O or arithmetic operations, but it is not an essential block for frequency counting.
Step-by-Step Solution:
List common blocks: input conditioner, timing gate, counter, latch/display register, decoder/display.Compare each option to this list.Display register → required to hold the count for stable display.Decoder/display → required to translate BCD/binary to segments.Timing and control unit → required to create the measurement window.Bit shifter → not required for core frequency counting.Verification / Alternative check:Block diagrams in textbooks consistently omit a shifter in basic frequency counters unless specific serial interfaces are added.
Why Other Options Are Wrong:
Common Pitfalls:Confusing optional serial-output features (which could use shifters) with core counter architecture.
Final Answer:Bit shifter
Discussion & Comments