Cisco Interview Experience | Set 14 (On Campus) Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report First round Technical 1. Write a code for bubble sort. 2. What are the osi layers and explain them. 3. What are pointers. 4. A puzzle : We have two pits with capacities of 5 and 4. How will you measure 2 litres of water with these pots. Soln: Fill 5 litre pot and pour the contents into four litre pot. So we are left with 1litre in 5 litre pot and 4 litres in 4 litre pot. Empty the contents of the four litre pot and pour the contents of 5 litre pot(1 litre) into 4 litre pot. Now again fill the 5 litre pot and pour the contents into the 4 litre pot until it becomes full. So now we have 3+1 lites in four litre pot and 5-3=2 litres in 5 litre pot. Second round 1. Given 9 dots how will u connect all these with just 4 lines without taking off your hand. . . . . . . . . . 2. In a car race what will your position be if you overtake the last person. You cant overtake the last person unless it is a circular track. Next Round 1. Questions about resume and projects. 2. Find the nth bit of a number. Soln. given a number a; Let b=1; Shift b to the left n-1 times. b<<n-1 C=a&b; If c is true then the nth bit is 1 or else the nth bit is zero. 3. Given a 8 bit register with values ranging from 0-100. How much bits can be allocated for precision 4. Difference between void main(); and void main(void); - https://www.geeksforgeeks.org/cpp/difference-int-main-int-mainvoid/ All Practice Problems for Cisco ! Comment More infoAdvertise with us Anonymous Improve Article Tags : Interview Experiences Experiences Cisco Practice Tags : Cisco Similar Reads Cisco Interview experience | Set 21 (Off-Campus) I got a call from Cisco Systems, Bangalore for Software Engineer role. Total rounds: Hackerrank Test+ 3(Tech) + 1 (Managerial) Hackerrank test is pretty standard Linked List, arrays, trees. Round 1: Lot of questions from the resume, implement IPC on threads, Linked List questions, various IPCs, impl 1 min read Cisco Interview Experience | On-Campus Round 1:- The first round comprised of 1 coding question which was based on graph algorithm depth first search and few MCQs which had technical questions on computer networks,operating system ,data structure and aptitude(Practice from testpot.com and indiabix.com). 25 students were selected out of 2 2 min read Cisco Interview Experience | On-Campus Round 1: Cisco came for an on campus drive in our college. The recruitment process consisted of an online test followed by few round(s) of interview. The online test had questions from digital Electronics, networking, data structures and one coding question, which would mostly be from DSA. Now after 2 min read Cisco Interview Experience | On-Campus Cisco visited our Campus for Full Time hiring. Round 1: This was an online test conducted on Hackerrank. It had 1 coding question and 14 MCQs. Coding question was of easy standard and MCQs are on Computer Science fundamentals. In MCQ section, Computer networks and Operting system were having higher 2 min read Cisco Interview Experience | On-Campus Cisco was the first company to visit my college and it was my first interview experience. Round 1:Round 1 was the online test which included 25 mcqs and 1 coding question and the duration was 1 hour. The mcqs were based on Aptitude, logical reasoning and technical aptitude (questions on c , c++ not 5 min read Cisco Interview experience (On Campus) 2018 Round 1: MCQ(No negative marking) It is a online round which has 50 questions that had to be completed in 60 minutes. The questions consists of aptitude, C output questions, operating system concepts, networking and data structures. For aptitude if one follows RS Aggarwal that is enough. Also practi 1 min read Like