🇮🇳 GATE Biomedical Engineering · flashcards

GATE Biomedical Engineering Analog and Digital Electronics Flashcards

51 question-and-answer cards covering Analog and Digital Electronics as it is examined in GATE Biomedical Engineering. 24 of them are printed below, taken from across the deck — no signup, no paywall on the preview.

51Cards in deck
24Free preview
29Syllabus topics
~174Chars per answer
FreePrice

24 sample cards from the Analog and Digital Electronics deck

Sampled from the end of the deck, so these are different cards from the ones shown on the syllabus page.

  1. What is the quality factor Q of a band-pass filter?

    $$Q = \frac{f_{0}}{BW} = \frac{f_{0}}{f_{H}-f_{L}}$$ where $f_{0}$ is the center frequency and $BW$ is the bandwidth. Higher Q means a narrower, more selective passband.

  2. What is the Barkhausen criterion for sinusoidal oscillation in a waveform generator?

    For sustained oscillation the loop gain magnitude must equal one and the total phase shift around the loop must be $0$ or $360^{\circ}$: $$|A\beta| = 1, \qquad \angle A\beta = 0^{\circ}$$

  3. Give the frequency of oscillation of a Wien-bridge oscillator with equal R and C.

    $$f = \frac{1}{2\pi RC}$$ The non-inverting amplifier requires a gain of at least 3 to sustain oscillation.

  4. How does an astable multivibrator differ from a monostable and a bistable?

    Astable: no stable state, free-running oscillator (generates square waves). Monostable: one stable state, produces a single pulse when triggered (one-shot). Bistable: two stable states, changes state only on triggering (flip-flop).

  5. Convert the binary number $1011_{2}$ to decimal.

    $$1011_{2} = 1\cdot2^{3}+0\cdot2^{2}+1\cdot2^{1}+1\cdot2^{0} = 8+0+2+1 = 11_{10}$$

  6. How do you find the 2's complement of a binary number, and why is it used?

    Invert all bits (1's complement) and add 1. It is used to represent signed numbers and to perform subtraction using addition in digital systems.

  7. What are the radixes of binary, octal, decimal, and hexadecimal number systems?

    Binary: base 2; Octal: base 8; Decimal: base 10; Hexadecimal: base 16. Each hex digit equals 4 binary bits; each octal digit equals 3 binary bits.

  8. State De Morgan's two theorems in Boolean algebra.

    $$\overline{A+B} = \bar{A}\cdot\bar{B}, \qquad \overline{A\cdot B} = \bar{A}+\bar{B}$$ The complement of a sum is the product of complements, and vice versa.

  9. What are the Boolean identities for OR and AND with 0 and 1?

    $$A+0=A,\quad A+1=1,\quad A\cdot0=0,\quad A\cdot1=A,$$ $$A+\bar{A}=1,\quad A\cdot\bar{A}=0,\quad A+A=A,\quad A\cdot A=A$$

  10. Why are NAND and NOR called universal gates?

    Any Boolean function (and all other gates AND, OR, NOT) can be implemented using only NAND gates or only NOR gates, so each alone is functionally complete.

  11. Give the truth-table outputs (sum and carry) of a half adder.

    $$\text{Sum} = A \oplus B, \qquad \text{Carry} = A\cdot B$$ It adds two single bits but cannot accept a carry-in.

  12. What distinguishes a full adder from a half adder, and give its equations.

    A full adder adds three bits (A, B, and carry-in $C_{in}$): $$\text{Sum} = A\oplus B\oplus C_{in}, \qquad C_{out} = AB + C_{in}(A\oplus B)$$

  13. How is a half subtractor's difference and borrow expressed in Boolean form?

    $$\text{Difference} = A\oplus B, \qquad \text{Borrow} = \bar{A}\cdot B$$

  14. What is the function of a comparator (op-amp based)?

    A comparator compares two voltages and outputs a logic high or low depending on which is larger. The op-amp runs open-loop, so a small input difference drives the output to saturation (+$V_{sat}$ or $-V_{sat}$).

  15. What problem does a Schmitt trigger solve and how?

    It eliminates noise-induced false switching near the threshold by adding hysteresis: it uses positive feedback to set two different threshold voltages (upper and lower trip points), so the output switches cleanly and is immune to small noise.

  16. Define hysteresis (width of the dead band) for a Schmitt trigger.

    $$V_{H} = V_{UT} - V_{LT}$$ the difference between the upper trip point and lower trip point voltages. Input must cross these distinct levels to change the output state.

  17. What is a digital encoder?

    An encoder is a combinational circuit that converts $2^{n}$ (or fewer) active input lines into an $n$-bit binary code. For example, an 8-to-3 encoder produces a 3-bit output for one of 8 active inputs.

  18. What is a decoder, and how many outputs does an n-to-2^n decoder have?

    A decoder converts an $n$-bit binary input into one of $2^{n}$ unique output lines (only one active at a time). An $n$-to-$2^{n}$ decoder has $2^{n}$ outputs; e.g., a 3-to-8 decoder has 8 outputs.

  19. What is a priority encoder and why is it needed?

    A priority encoder resolves the ambiguity when multiple inputs are active simultaneously by encoding only the highest-priority (highest-order) active input, unlike a simple encoder which gives invalid output for multiple active inputs.

  20. What is the difference between a combinational and a sequential digital circuit?

    A combinational circuit's output depends only on present inputs (no memory), e.g., adders, decoders. A sequential circuit's output depends on present inputs and past state (has memory), e.g., flip-flops, counters.

  21. What is the slew rate of an op-amp and why does it matter?

    Slew rate is the maximum rate of change of the output voltage: $$SR = \left.\frac{dV_{out}}{dt}\right|_{max}\ \left(\text{V}/\mu\text{s}\right)$$ It limits the maximum frequency/amplitude an op-amp can output without distortion.

  22. What are the ideal op-amp assumptions used in circuit analysis?

    Infinite open-loop gain, infinite input impedance (no input current), zero output impedance, infinite bandwidth, and zero offset. With negative feedback this gives the virtual short: $V_{+} = V_{-}$.

  23. What is the gain-bandwidth product (GBW) of an op-amp?

    $$\text{GBW} = A_{v} \times f = \text{constant}$$ For an op-amp the product of closed-loop gain and bandwidth is constant, so increasing gain reduces usable bandwidth.

  24. Compare the input impedance and switching control of MOSFET vs BJT for biomedical/low-power use.

    MOSFET has extremely high input impedance (gate draws ~no DC current) and is voltage-controlled, giving very low static power and easy integration. BJT is current-controlled with lower input impedance but higher transconductance for a given current, useful in precision analog stages.

What this deck covers

The Analog and Digital Electronics deck follows the GATE Biomedical Engineering Analog and Digital Electronics syllabus — 7 chapters and 29 topics — so questions land on material that is genuinely examinable rather than trivia around it. That works out to roughly 7.3 cards per chapter.

Answers are written to be recallable, not just readable — averaging about 174 characters, which is long enough to carry the reasoning and short enough to say out loud.

A deck like this earns its keep on the second and third pass. Read the syllabus first so you know the shape of the subject, then use the cards to find the specific facts that have not stuck.

Analog and Digital Electronics flashcards FAQ

How many Analog and Digital Electronics flashcards are in this GATE Biomedical Engineering deck?

51 cards. This page previews 24 of them, sampled evenly across the deck so you can judge the difficulty before installing anything.

Are these GATE Biomedical Engineering flashcards free?

Yes. The preview here is free to read with no signup, and the full 51-card deck is free inside the Examius app.

What do the Analog and Digital Electronics cards cover?

They follow the GATE Biomedical Engineering Analog and Digital Electronics syllabus — 7 chapters and 29 topics — so the questions track what is actually examinable.

How should I use these flashcards?

Read the syllabus first so you know the shape of the subject, then drill the deck. Examius schedules each card with spaced repetition, so cards you keep missing come back sooner and ones you know drift further apart.