Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      Cisco

      Employeur impliqué

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Cisco | Offres d’emploi chez Cisco | Salaires chez Cisco | Avantages sociaux chez Cisco
      Entretiens chez CiscoEntretiens d’embauche pour Software Engineer I chez CiscoEntretien chez Cisco


      Glassdoor

      • À propos
      • Récompenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communauté
      • Conditions d'utilisation
      • Confidentialité et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Indeed, Inc. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Indeed, Inc.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Entretien pour Software Engineer I

      3 août 2014
      Employé (anonyme)
      Offre acceptée
      Expérience positive

      Autres retours d’entretien d’embauche pour un poste comme Software Engineer I chez Cisco

      Entretien pour Software Engineer

      1 juil. 2026
      Candidat à l'entretien anonyme
      Chicago, IL
      Aucune offre
      Entretien difficile

      Candidature

      J'ai postulé via un établissement d'enseignement supérieur ou universitaire. Le processus a pris 1 jour. J'ai passé un entretien chez Cisco en août 2014

      Entretien

      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.

      Questions d'entretien [1]

      Question 1

      Zig Zag printing of the tree.
      Répondre à cette question
      2
      Expérience positive
      Entretien moyen

      Candidature

      J'ai postulé via un recruteur. J'ai passé un entretien chez Cisco (Chicago, IL)

      Entretien

      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.

      Questions d'entretien [1]

      Question 1

      rotate a square matrix clockwise
      Répondre à cette question

      Entretien pour Software Engineer

      25 juin 2026
      Candidat à l'entretien anonyme
      San Jose, CA
      Offre refusée
      Expérience neutre
      Entretien facile

      Candidature

      J'ai passé un entretien chez Cisco (San Jose, CA)

      Entretien

      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

      Entretien pour Software Engineer

      1 juil. 2026
      Candidat à l'entretien anonyme
      Bengaluru
      Aucune offre
      Expérience négative
      Entretien moyen

      Candidature

      J'ai postulé en ligne. J'ai passé un entretien chez Cisco (Bengaluru) en juin 2026

      Entretien

      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.

      Questions d'entretien [1]

      Question 1

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