Computer Architecture Solved Mcqs Part II
Computer Architecture Solved Mcqs Part II
MCQs-Part 2
http://freepdf-books.com
Computer Architecture Solved MCQs-Part 2
Usually ,in MSDOS ,the primary hard disk drives has the drive letter_______
A
B
C
D
_________________________________________________________________
P : “Program is a step by step execution of the instructions”. Given P, which of
the following is true ?
_________________________________________________________________
The most relevant addressing mode to write position independent code
Direct mode
Indirect mode
Relative mode
Indexed mode
_________________________________________________________________
http://freepdf-books.com
An interface that provides a method for transferring binary information
between internal storage and external devices is called
I/O interface
Input interface
Output interface
I/O bus
_________________________________________________________________
An interface that provides I/O transfer of data directly to and form the memory
unit and peripheral is termed as
DDA
Serial interface
BR
DMA
_________________________________________________________________
In magnetic disk data organized on the plotter in a concentric sets or rings
called
Sector
Track
Head
Block
_________________________________________________________________
In which addressing mode the operand is given explicitly in the instruction
Absolute
Immediate
Indirect
Direct
http://freepdf-books.com
_________________________________________________________________
http://freepdf-books.com
The instruction: MOV CL, [BX] [DI] + 8 represents the _____ addressing mode.
Based Relative
Based Indexed
Indexed Relative
Register Indexed
_________________________________________________________________
A basic instruction that can be interpreted by computer generally has
_________________________________________________________________
The two types of main memory are
_________________________________________________________________
A hardware unit which is used to monitor computer processing is
Console
Dot matrix printer
Mouse
ROM
_________________________________________________________________
On receiving an interrupt from an I/O device, the CPU
http://freepdf-books.com
halts for predetermined time
branches off to the interrupt service routine after completion of the
current instruction
branches off to the interrupt service routine immediately
hands over control of address bus and data bus to the interrupting
device
_________________________________________________________________
ADC
_________________________________________________________________
The concept of pipelining is most effective in improving performance if the
tasks being performed in different stages
_________________________________________________________________
Performance of a pipelined processor suffers if
_________________________________________________________________
In a k-way set associative cache, the cache is divided into v sets, each of
which consists of k lines. The lines of a set are placed in sequence one after
another. The lines in set s are sequenced before the lines in set (s+1). The
http://freepdf-books.com
main memory blocks are numbered 0 onward. The main memory block
numbered j must be mapped to any one of the cache lines from
_________________________________________________________________
http://freepdf-books.com
For a memory system ,the cycle time is
_________________________________________________________________
Secondary storage device which uses a delivery grooveless surface and is
encoded by the laser beam in the form of microscopic pits is called
Laser disk
Compact disk
Photo disk
Video disk
_________________________________________________________________
The addressing mode used in the instruction PUSH B is
Direct
Register
Register indirect
Immediate
_________________________________________________________________
The idea of cache memory is based on
_________________________________________________________________
http://freepdf-books.com
Where does a computer add and compare data ?
Hard disk
Floppy disk
CPU chip
Memory chip
_________________________________________________________________
A
B
C
D
_________________________________________________________________
The register used as a working area in CPU is
Program counter
Instruction register
Instruction decoder
Accumulator
_________________________________________________________________
The ALU of a microprocessor performs operations on 8 bit two complement
operands. What happens when the operation 7A16-A216 is performed?
http://freepdf-books.com
_________________________________________________________________
An interrupt can be temporarily ignored by the counter is called
Vector interrupt
Non maskable interrupt
Maskable interrupt
Low priority interrupt
_________________________________________________________________
http://freepdf-books.com
A CPU generally handles an interrupt by executing an interrupt service routine
_________________________________________________________________
A single instruction to clear lower 4 bits of the accumulator in 8085 assembly
language is
XRI OF H
A NI OH
X RI FOH
ANI OF H
_________________________________________________________________
Which out of the following is not an alternative name for primary memory?
Main memory
Primary memory
Internal storage
Mass storage
_________________________________________________________________
Which of the following is a sequential access device
Hard disk
Optical disk
Tape
Flash memory
_________________________________________________________________
http://freepdf-books.com
http://freepdf-books.com
The ALU of a computer normally contains a number of high speed storage
elements called
Semi conductor
Register
Hard disk
Magnetic disk
_________________________________________________________________
The control unit of computer
_________________________________________________________________
WORM stands for
_________________________________________________________________
The hardware in which data may be stored for a computer system is called
Register
Memory
Chip
Peripheral
_________________________________________________________________
http://freepdf-books.com
The Pentium processor was introduced
1991
1992
1993
1994
_________________________________________________________________
The circumferences of the two concentric disks are divided into 100 sections
each. For the outer disk, 100 of the sections are painted red and 100 of the
sections are painted blue. For the inner disk, the sections are painted red and
blue in an arbitrary manner. It is possible to align the two disks so that of the
sections on the inner disks have their colours matched with the corresponding
section on outer disk.
100 or more
125 or more
150 or more
175 or more
_________________________________________________________________
Interrupts which are initiated by an I/O drive are
Internal
External
Software
All of above
_________________________________________________________________
Arithmetic shift left operation
Produces the same result as obtained with logical shift left operation
Causes the sign bit to remain always unchanged
Needs additional hardware to preserve the sign bit
Is not applicable for signed 2s complement representation
http://freepdf-books.com
_________________________________________________________________
Fetch_And_Add(X,i) is an atomic Read-Modify-Write instruction that reads the
value of
memory location X, increments it by the value i, and returns the old value of X.
It is used in the
pseudocode shown below to implement a busy-wait lock. L is an unsigned
integer shared variable
initialized to 0. The value of 0 corresponds to lock being available, while any
non-zero value corresponds to the lock being not available.
AcquireLock(L){
while (Fetch_And_Add(L,1))
L = 1;
}
ReleaseLock(L){
L = 0;
}
This implementation
_________________________________________________________________
A control character is sent at the beginning as well as at the end of each block
in the synchronous-transmission in order to
_________________________________________________________________
The process of entering data into a storage location
http://freepdf-books.com
Is called a readout operation
Is destructive of previous contents
_________________________________________________________________
Of the following, which best characterizes computers that use
memory-mapped I/O?
_________________________________________________________________
http://freepdf-books.com
The desirable characteristic of a memory system is
_________________________________________________________________
In a k-way set associative cache, the cache is divided into v sets, each of
which consists of k lines. The lines of a set are placed in sequence one after
another. The lines in set s are sequenced before the lines in set (s+1). The
main memory blocks are numbered 0 onwards. The main memory block
numbered j must be mapped to any one of the cache lines from
( j mod v ) * k to ( j mod v ) * k + (k - 1)
( j mod v ) to ( j mod v ) + (k - 1)
( j mod k ) to ( j mod k ) + (v - 1)
( j mod k ) * v to ( j mod k ) * v + (v - 1)
_________________________________________________________________
Intel 80486 was introduced in
1985
1986
1987
1989
_________________________________________________________________
Which of the following are typical characteristics of a RISC machine?
Highly pipielined
Multiple register sets
Both a and b
None of these
http://freepdf-books.com
_________________________________________________________________
http://freepdf-books.com
The amount of ROM needed to implement a 4 bit multiplier is
64 bits
128 bits
1 Kbits
2 Kbits
_________________________________________________________________
3.4
4.3
5.1
6.3
_________________________________________________________________
http://freepdf-books.com
A charge coupled device has
_________________________________________________________________
WHAT IS A REGISTER?
MEMORY
ARRAY
COUNTER
NONE
_________________________________________________________________
The bus which is used to transfer data from main memory to peripheral device
is
Data bus
Input bus
DMA bus
Output bus
http://freepdf-books.com