Re: [algogeeks] Re: CISCO Written Test ??

2012-08-29 Thread Abhishek Sharma
50 questions were there in written test ( aptitude (22), c, c++, signals, networking, 8085, 8086) I got 35/ 50 in written test. In interviews, they asked questions like what is polymorphism, reverse a linked list, explain quicksort etc. On Mon, Aug 27, 2012 at 8:40 AM, apoorv gupta

[algogeeks] Re: CISCO Written Test ??

2012-08-26 Thread deepikaanand
written test will be (apti + tech) no negative marking apti from time , speed and distance, probablity , mixtures , profit and loss (easy) 2 qs to infer from the passage given(critical reasoning) 1 DI set (too simple) and technical qs 2 simple C o/p qs A large %age of qs was from digital logic

Re: [algogeeks] Re: CISCO Written Test ??

2012-08-26 Thread apoorv gupta
Der were many questions from electronics part also..20 apti 20 electronic ques 10 c/netwrking ques..So computer science people will have a tough luck.So revise basics of electronics. ques like half wave rectifier efficiency were asked On Sun, Aug 26, 2012 at 10:24 PM, deepikaanand

[algogeeks] Re: Cisco ??

2011-07-27 Thread Poised~
Well in my interview for internship I was mainly asked basic questions from Networking like FTP/HTTP, layers in networking, HTTPS, etc. Some programming questions like what structures will you use in storing millions of data (basically how google stores web caches) ?, etc (normal like any other

Re: [algogeeks] Re: Cisco ??

2011-07-27 Thread sagar pareek
thanks but previously cisco here asked questions from digital electronics...no assembly at all... On Wed, Jul 27, 2011 at 7:17 PM, Poised~ dip10c...@gmail.com wrote: Well in my interview for internship I was mainly asked basic questions from Networking like FTP/HTTP, layers in networking,

[algogeeks] Re: Cisco Question

2011-06-27 Thread Dave
y = ((x 0x55) 1) | ((x 1) 0x55). Note, 0x55 = 01010101 in binary. Dave On Jun 27, 7:18 am, rShetty rajeevr...@gmail.com wrote: Given a byte, write a code to swap every two bits. [Using bit operators]  Eg: Input: 10 01 11 01 Output: 01 10 11 10 -- You received this message because you

Re: [algogeeks] Re: Cisco Question

2011-06-27 Thread rajeev bharshetty
@ Dave How to think about the answer to the above question . I mean How do I tackle such problems ? On Mon, Jun 27, 2011 at 6:17 PM, Dave dave_and_da...@juno.com wrote: y = ((x 0x55) 1) | ((x 1) 0x55). Note, 0x55 = 01010101 in binary. Dave On Jun 27, 7:18 am, rShetty

Re: [algogeeks] Re: Cisco Question

2011-06-27 Thread piyush kapoor
Yep,I also want to know the same.. On Mon, Jun 27, 2011 at 6:23 PM, rajeev bharshetty rajeevr...@gmail.comwrote: @ Dave How to think about the answer to the above question . I mean How do I tackle such problems ? On Mon, Jun 27, 2011 at 6:17 PM, Dave dave_and_da...@juno.com wrote: y = ((x

Re: [algogeeks] Re: Cisco Question

2011-06-27 Thread piyush kapoor
thanks a lot for the wonderful explanation :-) On Mon, Jun 27, 2011 at 7:17 PM, Dave dave_and_da...@juno.com wrote: @Rajeev and Piyush: Numbering the bits from the right starting with 0 as usual, you see that you need to move the even-numbered bits one bit to the left and the odd-numbered

[algogeeks] Re: Cisco Question

2011-06-27 Thread rShetty
@Dave Thank You very much :) On Jun 27, 8:48 pm, piyush kapoor pkjee2...@gmail.com wrote: thanks a lot for the wonderful explanation :-) On Mon, Jun 27, 2011 at 7:17 PM, Dave dave_and_da...@juno.com wrote: @Rajeev and Piyush: Numbering the bits from the right starting with 0 as