Upload Button Icon Add office photos

Cisco

Compare button icon Compare button icon Compare

Filter interviews by

Cisco Interview Questions and Answers

Updated 13 Jun 2025
Popular Designations

311 Interview questions

A Technical Consultant was asked 10mo ago
Q. In a computer network with two routers, how do they communicate with each other?
Ans. 

Routers communicate using protocols to exchange routing information and forward data packets across networks.

  • Routers use routing protocols like OSPF, BGP, or RIP to share information about network topology.

  • They establish neighbor relationships to exchange routing tables and metrics.

  • For example, OSPF uses link-state advertisements to inform other routers about the state of their links.

  • BGP is used for inter-domain r...

View all Technical Consultant interview questions
A Senior Software Engineer was asked 10mo ago
Q. How would you write unit tests for this?
Ans. 

Unit testing is a software testing method where individual units or components of a software are tested in isolation.

  • Identify the unit to be tested

  • Write test cases to cover different scenarios

  • Use testing frameworks like JUnit or NUnit

  • Mock external dependencies for isolated testing

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 10mo ago
Q. Create a Kanban board using React in a live coding exercise.
Ans. 

Create a Kanban board in React during live coding interview

  • Use React components to represent different sections of the Kanban board (e.g. To Do, In Progress, Done)

  • Implement drag and drop functionality for moving tasks between sections

  • Utilize state management (e.g. useState) to track the tasks and their statuses

  • Style the board using CSS or a UI library like Material-UI

View all Senior Software Engineer interview questions
A Software Engineer was asked 10mo ago
Q. What is currying?
Ans. 

Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of functions, each taking a single argument.

  • Currying helps in partial application of functions.

  • It allows for creating reusable functions with fixed parameters.

  • Example: const add = a => b => a + b;

View all Software Engineer interview questions
A Software Engineer was asked 10mo ago
Q. What are call, apply, and bind?
Ans. 

call, apply, and bind are methods in JavaScript used to manipulate the value of 'this' in functions.

  • call() - calls a function with a given 'this' value and arguments provided individually.

  • apply() - calls a function with a given 'this' value and arguments provided as an array.

  • bind() - creates a new function that, when called, has its 'this' keyword set to the provided value.

View all Software Engineer interview questions
A Software Engineer was asked 10mo ago
Q. Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if: Open brackets must be closed by the same type of brackets....
Ans. 

Check if parentheses in a string are correctly matched using a stack data structure.

  • Use a stack to keep track of opening parentheses.

  • For each character in the string, push '(' onto the stack.

  • For each ')', pop from the stack and check if it matches an opening '('.

  • If the stack is empty at the end, parentheses are matched.

  • Example: '(()())' is matched, but '(()' is not.

View all Software Engineer interview questions
A Software Engineer was asked 10mo ago
Q. What is the format of an HTTP header?
Ans. 

HTTP headers are key-value pairs sent between the client and server to provide additional information about the request or response.

  • HTTP headers consist of a key-value pair separated by a colon, with each pair separated by a new line

  • Headers are used to provide information such as content type, content length, caching directives, authentication credentials, etc.

  • Example: 'Content-Type: application/json'

View all Software Engineer interview questions
Are these interview questions helpful?
A Campus Ambassador was asked 11mo ago
Q. Which layers of the OSI model does a router operate on?
Ans. 

The layers that work in a router are the physical layer, data link layer, network layer, and transport layer.

  • Physical layer: Responsible for transmitting raw data bits over a physical medium.

  • Data link layer: Responsible for error detection and correction, as well as framing and flow control.

  • Network layer: Responsible for routing packets to their destination based on IP addresses.

  • Transport layer: Responsible for en...

View all Campus Ambassador interview questions
A Technical Project Manager was asked 11mo ago
Q. How will you ensure that Jira issues are not moved ahead improperly?
Ans. 

Regularly review and prioritize Jira issues, set clear deadlines, communicate with team members, and track progress.

  • Regularly review and prioritize Jira issues to ensure they are not moved ahead without proper consideration.

  • Set clear deadlines for each Jira issue to prevent unnecessary delays.

  • Communicate effectively with team members to ensure everyone is on the same page regarding the status of Jira issues.

  • Track ...

View all Technical Project Manager interview questions
A Technical Project Manager was asked 11mo ago
Q. Explain the Agile Principles.
Ans. 

Agile principles are a set of values and practices that prioritize flexibility, collaboration, and customer satisfaction in project management.

  • Customer satisfaction through continuous delivery of valuable software

  • Welcome changing requirements, even late in development

  • Frequent collaboration between developers and business stakeholders

  • Self-organizing teams that reflect on how to become more effective

  • Regular adaptati...

View all Technical Project Manager interview questions

Cisco Interview Experiences

386 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Inheritance in Java allows a class (subclass) to inherit properties and methods from another class (superclass). This promotes code reusability and establishes a hierarchical relationship between classes. ...
  • Ans. 

    Inheritance in Java enables code reusability and establishes class hierarchies.

    • Single Inheritance: Class Dog inherits from class Animal.

    • Multilevel Inheritance: Class Puppy inherits from Dog, which inherits from Animal.

    • Hierarchical Inheritance: Classes Dog and Cat both inherit from Animal.

    • Multiple Inheritance (through interfaces): Class implements interfaces Runnable and Comparable.

    • Hybrid Inheritance: A class inherits f...

  • Answered by AI
  • Q2. Structured Data: Organization: Follows a predefined schema, often stored in relational databases with rows and columns. Examples: Employee tables in databases, banking transaction data, website-related dat...
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Aptitude Test 

Fifty multiple-choice questions on C programming, some networking topics, and role-related inquiries.

Round 2 - Technical 

(2 Questions)

  • Q1. After clearing the first round, there are two additional rounds on the same day: Technical Round (TR) and Managerial Round (MR). The TR begins at 8:30 AM and lasts approximately 50 to 55 minutes. During th...
  • Q2. Resume : All things . Networking : Gateway , Lookup address , IP and types , Firewalls and types , Routers SQL : Update , Insert , alter , count ......joins , left vs right , normalization
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Topics - mcq of algorithms, networking, dbms

Round 2 - Technical 

(2 Questions)

  • Q1. Based on resume
  • Q2. Questions on linked list, tree,
Round 3 - Behavioral 

(2 Questions)

  • Q1. About how you approach a problem
  • Ans. 

    I approach problems systematically, breaking them down into manageable parts and analyzing each component for effective solutions.

    • Identify the problem clearly: For example, if a project is behind schedule, determine the specific reasons for the delay.

    • Gather relevant information: Research similar cases or consult with team members to understand different perspectives.

    • Break the problem into smaller parts: If facing a com...

  • Answered by AI
  • Q2. Managerial questions on situations
Round 4 - HR 

(1 Question)

  • Q1. Basic hr questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It is a very Easy Aptitude test, with only general questions

Round 2 - Technical 

(2 Questions)

  • Q1. Technical general questions were asked
  • Q2. Basic questions about the position you've applied for
Round 3 - One-on-one 

(3 Questions)

  • Q1. Technical interview - Regarding the position you've applied for.
  • Q2. Managerial interview - Normal conversation easy to crack
  • Q3. Hr Interview - General questions about relocation, salary and queries you have if any.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Technical discussion
  • Q2. One-to-one round , technical discussion
Round 2 - HR 

(1 Question)

  • Q1. HR Round, salary

Interview Questions & Answers

user image Anonymous

posted on 21 Feb 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Aug 2024.

Round 1 - Coding Test 

Online assessments consisting of Linked list , stacks , string manipulations with medium difficulty for string manipulation and easy traversal for linked lists.

Round 2 - Technical 

(3 Questions)

  • Q1. Write code for rate limiter in python or any language? If don't know rate limiter , then they will explain the logic but needs to be alligned with rate limiting logic.
  • Ans. 

    Rate limiter code implementation in Python

    • Use a dictionary to store the timestamps of each request

    • Check the dictionary to see if the request should be allowed based on the rate limit

    • Update the dictionary with the current timestamp for each request

  • Answered by AI
  • Q2. Check the logic of your code , if you find any limitations.
  • Ans. 

    Check code logic for limitations

    • Review code for potential edge cases

    • Test code with different inputs to identify any issues

    • Consider scalability and performance implications of code

    • Ensure error handling is robust and comprehensive

  • Answered by AI
  • Q3. Managerial and Technical Round 3 with same set of questions as above.
Round 3 - Technical 

(2 Questions)

  • Q1. Kubernetes pods , deployments , replicas , deamon sets , aws services and experience in mitigating issues in devops.
  • Q2. Explain full pipeline which you worked from Code Integration to deployment and security check. What all python library used , have you used flask and other libraries for request and response.
  • Ans. 

    I have experience working on full pipeline from code integration to deployment with security checks. Used Flask and other Python libraries for request and response handling.

    • Used Git for version control and continuous integration tools like Jenkins for automated builds

    • Utilized Docker for containerization and Kubernetes for orchestration

    • Implemented security checks using tools like SonarQube and OWASP ZAP

    • Used Flask for bu...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Get ready for python in Flask , request response concepts to write full code.

Associate Engineer Interview Questions & Answers

user image Radheshyam Dhote

posted on 2 Jan 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Write a code for Fibonacci series?

Round 2 - Technical 

(1 Question)

  • Q1. What is aws and explain how you deployed your project.
  • Ans. 

    AWS is a cloud computing platform that offers a wide range of services for storage, computing, networking, databases, and more.

    • AWS stands for Amazon Web Services

    • I deployed my project on AWS using services like EC2 for virtual servers, S3 for storage, and RDS for databases

    • I used AWS Elastic Beanstalk for easy deployment and scaling of my application

    • I configured security groups and IAM roles to ensure secure access to my...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. What is AI, explain its application
  • Ans. 

    AI stands for Artificial Intelligence, it is the simulation of human intelligence processes by machines.

    • AI is used in various applications such as virtual assistants (e.g. Siri, Alexa), recommendation systems (e.g. Netflix, Amazon), autonomous vehicles, and facial recognition technology.

    • AI can be applied in healthcare for tasks like disease diagnosis, personalized treatment plans, and drug discovery.

    • AI is also used in ...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Development topics: LWC related questions, trigger, batch apex, governor limits, future method
  • Q2. Admin Topics: Flow, price rules, product rules, some scenario based questions
Round 2 - Technical 

(2 Questions)

  • Q1. LWC, Aura, Test Class, Best Practice - trigger, Decorators, Error Handling
  • Q2. Rest API, Deployments, Some scenario based questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial Round: Intro & Scenario based questions

Apprentice Interview Questions & Answers

user image Anonymous

posted on 13 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Instagram and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. It's all from your Resume only Basic coding questions
  • Q2. Be Honest in resume Many technical questions It's about 30 to 40 mins Be confident Show you are enthusiastic and willingness to learn
Round 2 - Behavioral 

(3 Questions)

  • Q1. Its all about your understanding of technologies Your opinions with clarity
  • Q2. Be active and give full pledged answers with crystal clear explanation Otherwise they will not move forward
  • Q3. Being confident is only the thing
Round 3 - HR 

(3 Questions)

  • Q1. Explain about yourself
  • Ans. 

    I am a highly motivated and detail-oriented individual with a strong background in project management and team leadership.

    • Experienced in project management and team leadership

    • Detail-oriented and highly motivated

    • Strong communication and interpersonal skills

  • Answered by AI
  • Q2. The HR explain the role package and everything
  • Q3. This is also elimination round.Being active is enough
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Aug 2024.

Round 1 - Aptitude Test 

Code-with-cisco having coding questions and mcq

Round 2 - Technical 

(2 Questions)

  • Q1. Different scheduling algorithms in OS?
  • Ans. 

    Different scheduling algorithms in OS determine how tasks are prioritized and executed.

    • First-Come, First-Served (FCFS)

    • Shortest Job Next (SJN)

    • Round Robin (RR)

    • Priority Scheduling

    • Multi-Level Queue Scheduling

  • Answered by AI
  • Q2. Resume go-through: projects and intern
Round 3 - Technical 

(2 Questions)

  • Q1. Networking: Transfer packet from one device to another
  • Q2. Contact dictionary- data structure used and time complexity
  • Ans. 

    Contact dictionary can be implemented using hash table for fast lookups with O(1) time complexity.

    • Use a hash table to store contacts with keys as names and values as contact information.

    • Example: { 'John Doe': '555-1234', 'Jane Smith': '555-5678' }

    • Time complexity for searching, inserting, and deleting contacts is O(1) with a hash table.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Basic networking
  • Q2. Why cisco, what is cisco?
  • Ans. 

    Cisco is a multinational technology conglomerate known for networking hardware, software, and services.

    • Cisco is a leading provider of networking equipment and solutions.

    • They offer a wide range of products including routers, switches, and security devices.

    • Cisco also provides software solutions for network management and security.

    • The company offers services such as consulting, technical support, and training.

    • Cisco is kno...

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Cisco?
Ask anonymously on communities.

Cisco Interview FAQs

How many rounds are there in Cisco interview?
Cisco interview process usually has 2-3 rounds. The most common rounds in the Cisco interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Cisco interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Cisco. The most common topics and skills that interviewers at Cisco expect are Cisco, Python, Computer Networking, Linux Administration and Salesforce.
What are the top questions asked in Cisco interview?

Some of the top questions asked at the Cisco interview -

  1. ONE PUZZLE THAT I REMEMBERED. At the local model boat club, four friends were t...read more
  2. Inheritance in Java allows a class (subclass) to inherit properties and methods...read more
  3. 1.Two routers are connected,Ospf is enabled but link is down, what are the spec...read more
What are the most common questions asked in Cisco HR round?

The most common HR questions asked in Cisco interview are -

  1. What are your salary expectatio...read more
  2. Why should we hire y...read more
  3. Share details of your previous j...read more
How long is the Cisco interview process?

The duration of Cisco interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.4/5

based on 286 interview experiences

Difficulty level

Easy 15%
Moderate 77%
Hard 8%

Duration

Less than 2 weeks 61%
2-4 weeks 28%
4-6 weeks 9%
6-8 weeks 2%
More than 8 weeks 1%
View more

Interview Questions from Similar Companies

Nokia Networks Interview Questions
4.2
 • 119 Interviews
Nvidia Interview Questions
3.5
 • 112 Interviews
BT Business Interview Questions
4.0
 • 86 Interviews
Arista Networks Interview Questions
4.0
 • 48 Interviews
TransPerfect Interview Questions
3.3
 • 26 Interviews
View all

Cisco Reviews and Ratings

based on 2k reviews

4.2/5

Rating in categories

3.9

Skill development

4.3

Work-life balance

3.9

Salary

3.6

Job security

4.2

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 2k Reviews and Ratings
Software Engineer
2.8k salaries
unlock blur

₹17 L/yr - ₹39.4 L/yr

Technical Consulting Engineer
679 salaries
unlock blur

₹9.8 L/yr - ₹27.2 L/yr

Senior Software Engineer
675 salaries
unlock blur

₹24 L/yr - ₹41.6 L/yr

Network Engineer
399 salaries
unlock blur

₹5.7 L/yr - ₹14 L/yr

Software Developer
348 salaries
unlock blur

₹16.1 L/yr - ₹25.8 L/yr

Explore more salaries
Compare Cisco with

Google

4.4
Compare

Microsoft Corporation

3.9
Compare

Nokia Networks

4.2
Compare

BT Business

4.0
Compare
write
Share an Interview