CISCO Systems Placement Papers + Sample Papers

10 02 2009

CISCO Systems Placement Papers + Sample Papers

Cisco Systems is the worldwide leader in networking for the Internet. Cisco provides end-to-end networking solutions. Cisco sells its products in approximately 115 countries .Cisco is one of America’s greatest corporate success stories. Since shipping its first product in 1986, the company has grown into a global market leader that holds No. 1 or No. 2 market share in virtually every market segment in which it participates. Since becoming a public company in 1990, Cisco’s annual revenues have increased from $69 million in that year to $12.2 billion in fiscal 1999. As measured by market capitalization, Cisco is among the largest in the world.

Note : Here are some papers and interview procedure, papers on digital section, software section. some questions on aptitude.

CAUTION: There is a -ve marking of +1 & -1 u dont mark blindly.Mark the
answer if u know exactly.cutoff will be 25 marks out of 60.So becareful.

There r 2 sections in CISCO
section 1: Aptitude 20 marks (10 aptitude,10
analogy,oppositewords etc))

section 2:comp sc(data structue,c,theory of
computation,networks,operating systems)

I collected upto 20 questions;

In this setion questions exact numbers I have forgotten.So this will be
useful to the style of the problem only.

SECTION 1:
1: A man went to market with some money.With that money he can buy 15
pencils or 25 pens.He kept 15% of that money for bus fare and with rest of
the money he purchased 5 pencils,and ‘x’ pens.How many pens he purchased?

2:A man climbing a wall.For every 4 steps go up he will slipdown 2
steps.If he takes 12 min to 3 steps.how much time it takes to climb 48
meters and one step=2meters.

3: Two trains with lengths x and y ,and speeds u and v.Approaching each
other how much time it takes to takes for faster train to cross other
train?
In this question I don’t remember the x,y,u,v.U can find formula in
Aggarwal’s quantitative aptitude book

4:
there was some question on ages that was easy

Section2:

1.
main()
{ fork();
fork();
fork();
printf(“hello”);
}
How many times it will print hello?
2:
char A[5,6]
How many bytes it requires?

3:Bridges are used in which layer?

4.Bigendian means
a)lower byte stored in lower address
b)lower byte stored in higher address
one of these is correct.u can verify in Any micro processor book.

5:
#define mmx 10+10

printf”%d”,mmx*mmx);

6: main()
{ j=0
for(i=0;i<10;i++)
{
j+=i;
}
}
what is the value of i & j at the end of the loop
ans: 10,46

7: Regular expression with 2 consecutive 1’s and all string of 0’s and 1’s

8:
dead lock conditions 1 question

9:
selective repeat widow size of sender & receiver 1 question.

10;Balanced trees 1 question





Cisco Placement Paper (Technical- Digital & Software Section)

10 02 2009

Paper: Cisco Placement Paper (Technical- Digital & Software Section)

Section I – 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
18. Give the output when the input of a D-flip flop is tied to the output through the XOR gate.
19. How much time does a serial link of 64 Kbps take to transmit a picture with 540 pixels.
20. Give the output when the input of a D-flip flop is tied to the output through the XOR gate
21. Implement the NOR gate as an inverter.
22. What is the effect of temperature on the Icb in a transistor
23. What is the bit storage capacity of a ROM with a 512*4 organization?
24. What is the reason of the refresh operation in dynamic RAM’s ?
25. 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?
26. How many flip flops are required to produce a divide by 32 device ?
27. 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?
28. Implement the logic equation Y = C^BA^ + CB^A + CBA with a multiplexer. (where C^ stands for C complement)
29. Equivalent Gray code representation of AC2H.
30. What does a PLL consist of ?

Section 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 ?