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 & benefits
      Jobs
      Interviews
      Interviews
      Related searches: Cisco reviews | Cisco jobs | Cisco salaries | Cisco benefits | Cisco conversations
      Cisco interviewsCisco Software Engineer interviewsCisco interview


      Glassdoor

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

      Employers

      • Free Employer Account
      • Employer Center
      • Employers Blog

      Information

      • Help
      • Guidelines
      • Terms of Use
      • Privacy & 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. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls," and logo are proprietary trademarks of Glassdoor LLC.

      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 personalized job recommendations and updates by starting your searches.

      Software Engineer Interview

      May 15, 2014
      Anonymous employee
      San Jose, CA
      Accepted offer
      Positive experience
      Average interview

      Application

      I applied online. The process took 4 weeks. I interviewed at Cisco (San Jose, CA) in May 2010

      Interview

      1. Define Storage Classes and explain application domain. register - tell to the compiler for use a CPU register for fast aceess for that variable. auto - it's a variable created and initialized when it is defined. It is not visible outside of the block. static - defined inside of the function retain its value between calls. Always is initialized with 0. Defined as global in a file is visible on for the functions from that file. extern - the definition of the variable is in another file. 2. Define the Storage Qualifiers const - define a variable that can not change its value along the program execution. volatile - define a variable that can be changed indirectly. An example can be a counter register that is updated by hardware. mutuable - a member of a structure or object can be changed even if the structure, for example is declared const: Ex: struct complex {mutuable int x; int y;}; const complex Mycomplex = {1, 2}; Mycomplex.x = 3; /* correct */ 3. Give an example for a variable "const" and "volatile". Is it possible? Yes, a status register for a microcontroller. 4. Detect if a linked list is circular. Need to use 2 pointers, one incrementing by 1 and another by 2. If the list is circular, then pointer that is incremented by 2 elements will pass over the first pointer. 5. Have you any remarks? #define res(a) a*a Using in this form the result will not be like we expect. Thinking that "a" is replaced with (2+3), then we will obtain 2+3*2+3 = 11 instead (2+3)*(2+3) = 25. Use always #define res(a) (a)*(a) 6. Define a "dangling" pointer Dangling pointer is obtained by using the address of an object which was freed. 7. Any difference between "const int*ptr" and int *const ptr" ? Yes, it's a major difference. First define a constant data and second define a constant pointer. 8. What is the declaration and definition of a variable? The definition contains the implementation for a method or variable declaration. This is just an example. 9. Give a solution for a stack overflow situation. func_call() { funct_call(); } Every time the above function is called the return address is stored onto the stack. Calling in this infinite loop will cause a stack overflow. 10. Give 4 examples for an infinite loop. a. while (1) {} b. for (;;) {} c. do {}while{1}; d. label: goto label;

      Interview questions [1]

      Question 1

      What are the difference between DES and RSA algorithm?
      Answer question
      18

      Other Software Engineer Interview Reviews for Cisco

      Software Engineer Interview

      May 17, 2026
      Anonymous Interview Candidate
      No offer
      Neutral experience
      Average interview

      Application

      I interviewed at Cisco

      Interview

      They care about your skills, rather than your background. They have a template which they provide and you got to fill that, everyone is provided a unique number. You are instructed not to disclose any of your personal details in the due course of your interview.

      Interview questions [1]

      Question 1

      Basically DSA, CS Fundamentals, Projects Talks.
      Answer question

      Software Engineer Interview

      May 3, 2026
      Anonymous employee
      Austin, TX
      Accepted offer
      Positive experience
      Average interview

      Application

      I interviewed at Cisco (Austin, TX)

      Interview

      The interview process was two rounds. The first round was a behavioral interview. Straightforward questions, like tell me about the most technically challenging project you have worked on. The second round was a system design interview.

      Software Engineer Interview

      Jun 5, 2026
      Anonymous Interview Candidate
      No offer
      Positive experience
      Average interview

      Application

      I applied online. I interviewed at Cisco in May 2026

      Interview

      Series of 4 interviews, First screening with HR Recruiter, reviewed resume and qualifications, second was hiring manager, reviewed experience and skills. Technical interview with team as a panel type interview, Last with hiring Director.

      Interview questions [1]

      Question 1

      Technical questions on networking. Experience with work enviroment
      Answer question