Self Studies

Digital Electronics Test 1

Result Self Studies

Digital Electronics Test 1
  • Score

    -

    out of -
  • Rank

    -

    out of -
TIME Taken - -
Self Studies

SHARING IS CARING

If our Website helped you a little, then kindly spread our voice using Social Networks. Spread our word to your readers, friends, teachers, students & all those close ones who deserve to know what you know now.

Self Studies Self Studies
Weekly Quiz Competition
  • Question 1
    2 / -0.33
    If the solutions to the quadratic equation x2 – 11x + 22 are x = 3 and x = 6, than the base of numbers is
    Solution

    Concept:

    A quadratic equation with factor α and β can be written as:

    x2 – (α + β) x + (αβ) = 0

    Application:

    Given the quadratic equation:

    x2 – 11x + 22 = 0         ---(1)

    Also, the solutions to the given quadratic equation are 3 and 6.

    ∴ We can write the quadratic equation as:

    x2 – (6 + 3) x + (6 × 3) = 0       ---(2)

    Comparing the two-equations, we can write:

    (6)b + (3)b = (11)b i.e. for some base ‘b’, this equation must hold true.

    Converting both the RHS and LHS to their respective decimal equivalent, we can write:

    (6 × b0) + (3 × b0) = (1 × b1 + 1 × b0)

    6 + 3 = b + 1

    b = 8

    ∴ The base of the number is 8 that satisfies the above quadratic equation.

  • Question 2
    2 / -0.33

    A delay line circuit is to be generated to create a delay of 0.32 ms between input and output. The number of flip-flops required in SISO register to produce the required delay?

    Given that clock frequency, fc = 1.25 MHz
    Solution

    Concept:

    Δt = NTc

    Where,

    Δt is the total delay required

    N is number of flip flops

    Tc is the clock time cycle

    Calculation:

    Given that,

    Δt = 0.32 ms

    Clock frequency, fc = 1.25 MHz

    \({T_c} = \frac{1}{{{f_c}}} = \frac{1}{{1.25\; \times \;{{10}^6}}} = 0.8\;\mu sec\) 

    \(N = \frac{{{\rm{\Delta }}t}}{{{T_c}}} = \frac{{0.32\; \times \;{{10}^{ - 3}}}}{{0.8\; \times\; {{10}^{ - 6}}}} = 400\)
  • Question 3
    2 / -0.33
    In a dual slope ADC, the reference voltage is 100 mV and the first integration period is set as 50 msec. The input resistor of the integrator is 1 kΩ and the integrating capacitor 0.047 μF. For an input voltage of 120 mV, the second integration (de-integration) period will be
    Solution

    We know that,

    Vin T1 = Vref T2

    ⇒ 120 × 10-3 × 50 × 10-3 = 100 × 10-3 × T2

    ⇒ T2 = 60 ms
  • Question 4
    2 / -0.33
    The number of 1’s in the 8-bit representation of -127 in 2’s complement form is m and that in 1’s complement form is n. What is the value of m : n?
    Solution

    Concept:

    1’s complement representation of a binary number is obtained by toggling all the bits, i.e. replacing 1 with 0, and 0 with 1.

    2’s complement representation of a binary number is obtained by adding 1 to the 1’s complement representation.

    Application:

    (127)10 = (01111111)2

    1’s complement representation will be:

    1’s complement = 10000000

    Number of 1’s is the 1’s complement is, n = 1

    Now, the two (2’s) complement representation will be:

    2’s complement = 10000000 + 1

    = 10000001

    Number of 1’s in 2’s complement is, m = 2

    ∴ The required ratio is m : n = 2 : 1

  • Question 5
    2 / -0.33

    Consider the following Boolean expression:

    \(\left( {\bar A + \bar B} \right)\left[ {\overline {A\left( {B + C} \right)} } \right] + A\left( {\bar B + \bar C} \right)\)

    It can be represented by a single three-input logic gate. Identify the gate.
    Solution

    \(\begin{array}{l}\left( {\bar A + \bar B} \right)\left[ {\overline {A\left( {B + C} \right)} } \right] + A\left( {\bar B + \bar C} \right)\\= \left( {\bar A + \bar B} \right)\left[ {\bar A + \left( {\overline {B + C} } \right)} \right] + A\left( {\bar B + \bar C} \right)\end{array}\)

    \(\begin{array}{l}= \left( {\bar A + \bar B} \right)\left[ {\bar A + \bar B\bar C} \right] + A\bar B + A\bar C\\= \bar A + \bar A\bar B\bar C + \bar A\bar B + \bar B\bar C + A\bar B + A\bar C\end{array}\)

    \(\begin{array}{l}= \bar A\left( {1 + \bar B\bar C + \bar A\bar B} \right) + \bar B\bar C + A\bar B + A\bar C\\= \bar A + \bar B\bar C + A\bar B + A\bar C\end{array}\)

    \(\begin{array}{l}= \bar A + A\bar B + A\bar C\\= \bar A + A\left( {\bar B + \bar C} \right)\end{array}\)

    \(\begin{array}{l}= \bar A + \bar B + \bar C\\= \overline {ABC} \end{array}\)

    The given Boolean expression represents NAND gate.
  • Question 6
    2 / -0.33
    In an 8085 microprocessor, the accumulator contents are AA H. After executing the instruction “CPI99” in the microprocessor
    Solution

    Given, contents A = AA H

    CPI 99 H:

    Compares the data 99 H with contents of A, the compression is made by subtracting 99 H from contents of A (i.e. AA H). the contents of A remains unaffected but status of result is reflected by Flags.

    \(\begin{array}{*{20}{c}}{A;}&{10101010}\\{99\;H;}&{\begin{array}{*{20}{c}}{\underline {10011001} }\\{000010001}\end{array}}\end{array}\) 

    After comparison both zero flag and carry flag are reset.
  • Question 7
    2 / -0.33

    Consider the following program for 8085

    XRA A

    LXI B, 0007H

    \(\begin{array}{*{20}{c}} {{\rm{Loop}}:}&{{\rm{DCX\;B}}}\\ \;&{{\rm{JNZ\;Loop}}} \end{array}\)

    The loop will be executed
    Solution

    XRA A:

    The instruction XRA A performs ExOR operation on contents of A with contents of A only and stores the result in A. The instruction clears the contents of A. So, the zero flag is set by the instruction.

    LXI B, 0007H:

    Loads BC pair with 16-bit data 0007 H. So, contents of BC pair become 0007 H.

    LOOP: DCX B:

    Decrements the contents of BC pair by one.

    JNZ LOOP:

    Jumps the execution of a program to LOOP if zero flag is not set.

    In the above program zero flag is set when XRA A is executed and the status of zero flag remains unaffected by DCX B instruction as it does not affect the flags. So, the execution comes out of LOOP during first instance itself as Z flag is already set. So, the loop runs only once.
  • Question 8
    2 / -0.33

    Consider numbers represented in 4-bit gray code. Let h3h2h1h0 be the gray code representation of a number n and let g3g2g1g0 be the gray code of ((n + 1) modulo 16) value of the number.

    Which one of the following functions is correct?
    Solution

    The truth table is shown for the given information.

    Decimal

    Binary

    Gray

    Gray [(n + 1) mod 16]

    h3

    h2

    h1

    h0

    g3

    g2

    g1

    g0

    0

    0

    0

    0

    0

    0

    0

    0

    0

    0

    0

    0

    1

    1

    0

    0

    0

    1

    0

    0

    0

    1

    0

    0

    1

    1

    2

    0

    0

    1

    0

    0

    0

    1

    1

    0

    0

    1

    0

    3

    0

    0

    1

    1

    0

    0

    1

    0

    0

    1

    1

    0

    4

    0

    1

    0

    0

    0

    1

    1

    0

    0

    1

    1

    1

    5

    0

    1

    0

    1

    0

    1

    1

    1

    0

    1

    0

    1

    6

    0

    1

    1

    0

    0

    1

    0

    1

    0

    1

    0

    0

    7

    0

    1

    1

    1

    0

    1

    0

    0

    1

    1

    0

    0

    8

    1

    0

    0

    0

    1

    1

    0

    0

    1

    1

    0

    1

    9

    1

    0

    0

    1

    1

    1

    0

    1

    1

    1

    1

    1

    10

    1

  • Question 9
    2 / -0.33
    A certain 8-bit DAC has a full scale output of 2mA and full scale error of ± 0.5 % full scale reading. The maximum possible output current for an input of 10000000 is__________ μA.
    Solution

    Step size \(= \frac{{2mA}}{{{2^8} - 1}} = \frac{{2mA}}{{255}}\)

    = 7.84 μA.

    10000000 = 12810

    Ideal output = 128 × 7.84 μA

    = 1004 μA

    Error = ± 0.5% × 2mA

    = ± 10 μA

    Range of output = 1004μA ± 10 μA

    Maximum possible output : 1014 μA
  • Self Studies
    User
    Question Analysis
    • Correct -

    • Wrong -

    • Skipped -

    My Perfomance
    • Score

      -

      out of -
    • Rank

      -

      out of -
    Re-Attempt Weekly Quiz Competition
    Self Studies Get latest Exam Updates
    & Study Material Alerts!
    No, Thanks
    Self Studies
    Click on Allow to receive notifications
    Allow Notification
    Self Studies
    Self Studies Self Studies
    To enable notifications follow this 2 steps:
    • First Click on Secure Icon Self Studies
    • Second click on the toggle icon
    Allow Notification
    Get latest Exam Updates & FREE Study Material Alerts!
    Self Studies ×
    Open Now