Home / ECE / Microprocessors :: Discussion

Discussion :: Microprocessors

  1. Let JCOKE = 3 and LPEPSI = 5. Consider the statement

    IF (3 * JCOKE. EQ. LPESPSI)
    JCOKE = JCOKE + 2
    JCOKE = JCOKE + 5

    What will be the final value of JCOKE after the above statement is executed?

  2. A.
    8
    B.
    1
    C.
    15
    D.
    10

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    The logical IF statement means that IF (3 x J COKE) is equal to (L PEPSI), J COKE = 3 + 2 = 5 otherwise J COKE = 3+5 = 8 Since (3 x J COKE) is more than (L PEPSI), the result is 8.


Be The First To Comment