Skip to contentSkip to footer
  • Community
  • Jobs
  • Companies
  • Salaries
  • For employers
      Notifications

      Loading...

      Elevate your career

      Discover your earning potential, land dream jobs, and share work-life insights anonymously.

      employer cover photo
      employer logo
      employer logo

      Cisco

      Engaged employer

      About
      Reviews
      Pay and benefits
      Jobs
      Interviews
      Interviews
      Related searches: Cisco reviews | Cisco jobs | Cisco salaries | Cisco benefits | Cisco conversations
      Cisco interviewsCisco Software Engineer I interviewsCisco interview


      Glassdoor

      • About / Press
      • Awards
      • Blog
      • Research
      • Contact Us
      • Guides

      Employers

      • Free Employer Account
      • Employer Centre
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy and Ad Choices
      • Do Not Sell Or Share My Information
      • Cookie Consent Tool
      • Security

      Work With Us

      • Advertisers
      • Careers
      Download the App

      • Browse by:
      • Companies
      • Jobs
      • Locations
      • Communities
      • Recent posts

      Copyright © 2008-2026. Indeed, Inc. "Glassdoor," "Worklife Pro," "Bowls" and logo are proprietary trademarks of Indeed, Inc.

      Company Bowl sample

      Want the inside scoop on your own company?

      Check out your Company Bowl for anonymous work chats.

      Bowls

      Get actionable career advice tailored to you by joining more bowls.

      Followed companies

      Stay ahead in opportunities and insider tips by following your dream companies.

      Job searches

      Get personalised job recommendations and updates by starting your searches.

      Software Engineer I Interview

      3 Aug 2014
      Anonymous employee
      Accepted offer
      Positive experience
      Difficult interview

      Application

      I applied through university. The process took 1 day. I interviewed at Cisco in Aug 2014

      Interview

      It was a 4 round interview. The first round was a written round with 50 questions(20 aptitude + 30 technical) for 1 hour. The second round was a technical round(1 hour). The third was a technical + management round(20 mins).The fourth round was a short HR round(10 mins). In the first round, 20 aptitude comprised of simple-medium-complex aptitude questions.Some were answerable within 10 seconds , some took 30-40 seconds and the harder ones took slightly over a minute to solve. The questions were based on all the classic aptitude topics.Some questions were stated in a confusing way, but other than that , no hiccups were present. The technical side had 30 questions. I was able to answer most of the aptitude questions(17-18) were correct out of 20 and more than 22 questions were right out of 30 in the technical side. I think the cutoff for the second round was around the 40 mark, which i had gotten and i made it to the second round. In the second round, the interview started off with simpler,shorter questions, like for example the interviewer pointed to one of the technical questions in the previous round(the interviewer has your answer sheet from the previous round) and asked me to explain the approach i had taken to solve the problem. In the question , i had to estimate the worst case time complexity of the function. the recursive function had something like this: return function(params-1) + function(params-1) The answer to this was O(2^n). The interviewer modified the question to this: return (function(params-1) + function(params-1)) * function(params-1) The complexity of this was O(3^n). He asked me to derive it on paper which i did. The next question was regarding how to set the nth bit in a 32bit-integer. The answer was pretty straight forward. variable | 1<<(n-1). The next question was about a linked list. The interviewer asked me print a singly linked list in a reverse manner. After that we moved on to trees. The first question was to find the min element in the tree. The second question was to implement level order traversal in trees. After i did that, he asked me to traverse the tree and print it in reverse level order fashion, but the associativity of the child node should be from L-R. for eg.. 4 Then the answer would be: 1357264 / \ 2 6 / \ / \ 1 3 5 7 After taking a few hints from the interviewer i was able to code it up without errors. The next question was to print the tree in a zig-zag manner. ie: for the tree above the zig-zag traversal would yield: 4267531. After thinking for some time, hints from the interviewer, i was able to code this up as well. The key points the interviewer looked for, was approach, error-less coding,boundry cases,clarity and confidence. Also , try to speak to the interviewer about your thought process, this not only gives a better opinion to the interviewer, but if you tell him where your'e stuck, he/she might give you clues to proceed further. In the 3rd round, The technical-management round., the key focus was your thought process, they were not too keen about the technicality of the solutions. The interviewer asked me what were my favorite topics, and i replied data-structures and algorithms. Then he asked me to code up a part of a social network were people were nodes and different types of connections existed between them. my job was to write functions to connect any two nodes of the graph, and also another function to check if 2 nodes are directly or indirectly(transitively) connected. I asked him, whether all these edges/connections were directed or undirected, they were assumed to be undirected. the socialGraph class had a insertion,deletion functions and connect(node*,node*) , isconnected(node*,node*) functions as friend functions to connect 2 nodes and check if 2 nodes are connected. connect function was straight forward ,as i had to append node reference to the edge-list of the node. Then to check if 2 nodes are connected , i did a DFS from the source node to the destination node. The interviewer asked me to make the code such that it could scale. So i suggested that we could do a A* search instead of a DFS to make the search space smaller. The interviewer seemed satisfied with my solutions and then we moved on to the other questions. He asked me other simple questions about my projects. I did well enough to get qualified for the final round which was a casual HR round where they asked simple questions like the meaning of my name :P and then i was given a evaluation form to fill, and they asked me some questions on that which i could answer. Later after about 2 hours, they announced the results, 2 people were selected for full time jobs + internships (one of them was me :D), and 3 more for only internship. The interview overall was reasonable and strong knowledge in Data structures and algorithms was needed to get through.

      Interview questions [1]

      Question 1

      Zig Zag printing of the tree.
      Answer question
      2

      Other Software Engineer I interview reviews for Cisco

      Software Engineer Interview

      1 July 2026
      Anonymous interview candidate
      Chicago, IL
      No offer
      Positive experience
      Average interview

      Application

      I applied through a recruiter. I interviewed at Cisco (Chicago, IL)

      Interview

      March 13th; Took a hackerrank exam, 3 easy-med leetcode DSAs. One was rotating a matrix and the other was a binary search. And the third was a basic sql. Did not hear back until July.

      Interview questions [1]

      Question 1

      rotate a square matrix clockwise
      Answer question

      Software Engineer Interview

      25 June 2026
      Anonymous interview candidate
      San Jose, CA
      Declined offer
      Neutral experience
      Easy interview

      Application

      I interviewed at Cisco (San Jose, CA)

      Interview

      Standard panel, very simple leetcodes. reverse linked list kind of vibe s . I was literarly asked about how a linked list is structured and reversing it. there was almost no friction which I was shocked by one of the reason I did not accept

      Software Engineer Interview

      1 July 2026
      Anonymous interview candidate
      Bengaluru
      No offer
      Negative experience
      Average interview

      Application

      I applied online. I interviewed at Cisco (Bengaluru) in June 2026

      Interview

      The interview started well and covered backend concepts, Java, system design, and coding. I answered the questions confidently and had a positive interaction throughout. After receiving the rejection, I spoke with HR to understand the feedback. I was informed that the interviewer believed I was looking at answers during the interview. This came as a surprise because I was not referring to any external material. I have a habit of looking away while thinking or recalling concepts, which I believe may have been misunderstood. I wish this concern had been raised during the interview so I could have clarified it immediately. If there are concerns about a candidate’s behavior, discussing them in real time or asking for a room scan can help avoid misunderstandings. Overall, the interview questions were fair, but I feel my evaluation was influenced by this misunderstanding rather than my technical performance.

      Interview questions [1]

      Question 1

      Sort a nearly sorted array. I was asked for an optimal solution and discussed the time and space complexity.
      1 Answer