Company: Cisco Systems

SECTION 1 — BASIC DIGITAL SECTION

1.In order to find out stack fault of a three input nand gate how many necessary input vectors are needed ?

2.What is parity generation ?

3.A nand gate becomes ___ gate when used with negative logic ?

4.What is the advantage of cmos over nmos ?

5.What is the advantage of synchronous circuits over asynchronous circuits ?

6.What is the function of ALE in 8085 ?

7.A voice signal sample is stored as one byte. Frequency range is 16 Hz to 20 Hz. What is the memory size required to store 4 minutes voice signal?

8.What will the controller do before interrupting CPU?

9.In a normalized floating point representation, mantissa is represented using 24 bits and exponent with 8 bits using signed representation. What is range ?

10.The stack uses which policy out of the following– LIFO, FIFO, Round Robin or none of these ?

11.Where will be the actual address of the subroutine is placed for vectored interrupts?

12.Give the equivalent Gray code representation of AC2H.

13.What is the memory space required if two unsigned 8 bit numbers are multiplied ?

14.The vector address of RST 7.5 in 8085 processor is _______.
Ans. 003C (multiply 7.5 by 8 and convert to hex)

15.Subtract the following hexadecimal numbers— 8416 – 2A16

16.Add the following BCD numbers— 1001 and 0100

17.How much time does a serial link of 64 Kbps take to transmit a picture with 540 pixels Give the output when the input of a D-flip flop is tied to the output through the XOR gate. How much time does a serial link of 64 Kbps take to transmit a picture with 540 pixels.

19.Give the output when the input of a D-flip flop is tied to the output through the XOR gate Implement the NOR gate as an inverter.

20.What is the effect of temperature on the Icb in a transistor

21.What is the bit storage capacity of a ROM with a 512*4 organization?

22.What is the reason of the refresh operation in dynamic RAM’s ?

23.Suppose that the D input of a flip flop changes from low to high in the middle of a clock pulse. Describe what happens if the flip flop is a positive edge triggered type?

24.How many flip flops are required to produce a divide by 32 device ?

25.An active HIGH input S-R latch has a 1 on the S input and a 0 on the R input. What state is the latch in?

26.Implement the logic equation Y = C^BA^ + CB^A + CBA with a multiplexer.
(where C^ stands for C complement)

27.Equivalent Gray code representation of AC2H.

28.What does a PLL consist of ?

II – Software Section

1.The starting location of an array is 1000. If the array[1..5/…4] is stored in row major order, what is the location of element [4,3]. Each word occupies 4 bytes

2.In a tertiary tree, which has three childs for every node, if the number of internal nodes are N, then the total number of leaf nodes are

3.Explain the term “locality of reference” ?

4.What is the language used for Artificial Intelligence
Ans: lisp

5.What is the character set used in JAVA 2.0 ?
Ans: Unicode

6.char a =0xAA ;
int b ;
b = (int) a ;
b = b >> 4 ;
printf(“%x”,b);
What is the output of the above program segment ?

7.struct s1 { struct { struct { int x; } s2 } s3 }y; How does one access x in the above given structure definition ?

8.Why there is no recursion in Fortran ?
Ans. There is no dynamic allocation.

9.What is the worst case complexity of Quick sort?
Ans. O(n2)

10.What will be sequence of operating system activities when an interrupt occurs ?

Read More