The process took 1 day. I interviewed at Cisco (Bengaluru) in Feb 2012
Interview
written test was the 1st round.they allotted 9to12 time slot for me.it was crowded and simply they were unable to handle the situation.atlast by 12.30pm we entered into the company.the question paper included questions from 4 sections1.logical reasoning and english 2.general aptitude and c pgm 3.networking(unix and linux commands)4.software testing basics.it was tough and they alloe=wed only 80 mins.
Interview questions [1]
Question 1
In the following code segment what will be the result of the function,
value of x , value of y
{unsigned int x=-1;
int y;
y = ~0;
if(x == y)
printf("same");
else
printf("not same");
}