Home / ECE / Microprocessors :: Section 2

ECE :: Microprocessors

  1. Which of the following is not a valid real variable in FORTRAN 77?

  2. A.
    ANUT
    B.
    MONEY
    C.
    A MONEY
    D.
    BS

    View Answer

    Workspace

    Discuss Discuss in Forum


  3. 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?

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

    View Answer

    Workspace

    Discuss Discuss in Forum


  5. Diskette can be used for primary storage as well as secondary storage in a computer.

  6. A.
    True
    B.
    False

    View Answer

    Workspace

    Discuss Discuss in Forum


  7. Read the following statements

    1. Magnetic tape is a sequential device.
    2. Magnetic disc is a direct access device.
    3. Magnetic tape and disc are both sequential devices.
    4. Magnetic tape and disc are both direct access devices.
    Which of the above statements are correct?

  8. A.
    1 and 2 only
    B.
    1 and 3 only
    C.
    2 and 4 only
    D.
    1, 2 and 3 only

    View Answer

    Workspace

    Discuss Discuss in Forum


  9. A memory chip has 65536 cells in it. Then

  10. A.
    time required to access cell is same as that to access cell 65536
    B.
    time required to access cell is less than that required to access cell 65536
    C.
    time required to access cell is more than that required to access cell 65536
    D.
    either (a) or (b)

    View Answer

    Workspace

    Discuss Discuss in Forum


  11. Assertion (A): Mnemonics are used in assembly level program.

    Reason (R): Computer cannot understand mnemonics.

  12. A.
    Both A and R are correct and R is correct explanation of A
    B.
    Both A and R are correct but R is not correct explanation of A
    C.
    A is correct R is wrong
    D.
    A is wrong R is correct

    View Answer

    Workspace

    Discuss Discuss in Forum


  13. Which of the following is a valid real variable in FORTRAN 77?

  14. A.
    KPR
    B.
    LINE
    C.
    JOB
    D.
    RATE

    View Answer

    Workspace

    Discuss Discuss in Forum


  15. Consider the following logical IF statement in FORTRAN 77

    IF (SALT. GE. PEPPER) GOTO 11
    GOTO 13

    The above statement using arithmetic IF statement would be

  16. A.
    IF (SALT - PEPPER) 11, 11, 13
    B.
    IF (SALT - PEPPER) 13, 11, 13
    C.
    IF (SALT - PEPPER) 13, 11, 11
    D.
    IF (SALT - PEPPER) 11, 13, 13

    View Answer

    Workspace

    Discuss Discuss in Forum


  17. Assertion (A): Microprocessor 8085 can address 65536 memory locations.

    Reason (R): Microprocessor 8085 has 16 address lines.

  18. A.
    Both A and R are correct and R is correct explanation of A
    B.
    Both A and R are correct but R is not correct explanation of A
    C.
    A is correct R is wrong
    D.
    A is wrong R is correct

    View Answer

    Workspace

    Discuss Discuss in Forum


  19. If initial value of PROD is zero and a program adds X to PROD, Y times we get the result

  20. A.
    X + Y
    B.
    XY
    C.
    X / Y
    D.
    X - Y

    View Answer

    Workspace

    Discuss Discuss in Forum