Upload Button Icon Add office photos

Cisco

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Cisco Software Developer Intern Interview Questions, Process, and Tips

Updated 26 Aug 2024

Top Cisco Software Developer Intern Interview Questions and Answers

  • Q1. Subtree Node Count Problem We are provided with a tree containing 'N' nodes, numbered from 0 to N-1. The objective is to determine the total number of nodes within each ...read more
  • Q2. Binary Tree Traversals You are provided with a binary tree consisting of integer-valued nodes. The task is to compute the In-Order, Pre-Order, and Post-Order traversals ...read more
  • Q3. Remove Duplicates from String Problem Statement You are provided a string STR of length N , consisting solely of lowercase English letters. Your task is to remove all du ...read more

Cisco Software Developer Intern Interview Experiences

5 interviews found

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

I applied via Campus Placement and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was a 2 hour test with medium level questions

Round 2 - Technical 

(2 Questions)

  • Q1. Mostly asked about CN
  • Q2. Small Linked list question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

40 MCQ's, 2 Coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Dijkastra's Algorithm
  • Ans. 

    Dijkstra's Algorithm is a graph search algorithm that finds the shortest path between nodes in a graph.

    • Dijkstra's Algorithm is used to find the shortest path from a starting node to all other nodes in a weighted graph.

    • It works by maintaining a set of nodes whose shortest distance from the starting node is known.

    • The algorithm iteratively selects the node with the smallest distance and updates the distances of its neighb...

  • Answered by AI
  • Q2. Snake and Ladder

Skills evaluated in this interview

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DSA Medium Questions on arrays & linkedList
Round 2 - Coding Test 

DSA, Behavioural, os, some networks basics

I was interviewed before Mar 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 70 Minutes
Round difficulty - Medium

Interviewer was very nice and made me feel pretty comfortable. We talked about our hobbies for about 10mins and then he asked about my projects and which was my favourite of all. He then asked me a coding question. Which was like pretty easy and I gave him the optimized approach right away. He was satisfied with my approach and just moved on to the next part. He asked me some basic questions related to Operating Systems(related to deadlocks and semaphores). He even asked some basic questions related to OOPS. Then he gave me the next question. This was like a pretty new question for me and I took some time to understand the problem statement and then took some time to think about the logic. I was also sharing my approach with interviewer as well.I finally told him about my approach. He told me that my approach was fine but there also was some other approach but normally no-one would come up with that approach until they have previously solved the question.

  • Q1. 

    Subtree Node Count Problem

    We are provided with a tree containing 'N' nodes, numbered from 0 to N-1. The objective is to determine the total number of nodes within each subtree of the provided tree. Speci...

  • Ans. 

    Given a tree, find the number of nodes in each subtree rooted at every node.

    • Traverse the tree using Depth First Search (DFS) to count nodes in each subtree.

    • Maintain a count of nodes in each subtree while traversing the tree.

    • Start the DFS from the root node (node 0) and recursively count nodes in each subtree.

    • For leaf nodes, the subtree size will be 1 (the node itself).

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

Interviewer seemed to be a senior manager.He just asked about me and started with the interview.Interviewer asked me to design a standard map(hash-map). I gave him my approach and he also asked me to devise a hash function for it. I also gave him a hash function and he seemed to be pretty satisfied.

  • Q1. Design a basic hash map.
  • Ans. 

    Design a basic hash map

    • Use an array of linked lists to handle collisions

    • Implement methods for adding, removing, and retrieving key-value pairs

    • Include a hashing function to map keys to indices in the array

  • Answered by AI

Interview Preparation Tips

Eligibility criteria8 CGPACisco interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating Systems, Object Oriented Programming, Computer NetworksTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practise as many questions as you can
Tip 2 : Try solving the question on your own.
Tip 3 : To learn the concepts of OOM its best to go through a project.

Application resume tips for other job seekers

Tip 1 : Mention your coding achievements
Tip 2 : Do not make a big resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Cisco interview questions for designations

 Software Engineer Intern

 (4)

 Software Developer

 (26)

 Software Developer Trainee

 (1)

 Senior Software Developer

 (1)

 Software Development Engineer Intern

 (1)

 Software Engineer Intern Trainee

 (1)

 Intern

 (2)

 Software Developer Apprentice

 (1)

I was interviewed before Jun 2021.

Round 1 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

The interviewer was nice and he made me feel comfortable 
Topics :- Data structures, string manipulation and pointers
Timing :- Afternoon

  • Q1. 

    Remove Duplicates from String Problem Statement

    You are provided a string STR of length N, consisting solely of lowercase English letters.

    Your task is to remove all duplicate occurrences of characters i...

  • Ans. 

    Remove duplicate occurrences of characters in a given string.

    • Use a hash set to keep track of characters seen so far.

    • Iterate through the string and add non-duplicate characters to a new string.

    • Return the new string without duplicate characters.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

The interviewer was very supportive and we had a good discussion regarding his role in cisco etc.
Questions on various topics were asked including my courses, resume and internship

  • Q1. 

    Binary Tree Traversals

    You are provided with a binary tree consisting of integer-valued nodes. The task is to compute the In-Order, Pre-Order, and Post-Order traversals for the given binary tree.

    Input:

    ...
  • Ans. 

    Compute In-Order, Pre-Order, and Post-Order traversals for a given binary tree.

    • Implement tree traversal algorithms like In-Order, Pre-Order, and Post-Order.

    • Use recursion to traverse the binary tree efficiently.

    • Maintain separate lists for each traversal type and return them as nested lists.

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Medium

It was the HR round

  • Q1. Can you describe your strengths and weaknesses?
  • Q2. What changes have you experienced in yourself since you joined college?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in BangaloreEligibility criteriaAbove 7.5 CGPACisco interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Pointers, Machine learning , Dynamic programmingTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice coding questions of each difficulty level in the ratio of 3:2:1 (easy:medium:hard)
Tip 2 : Make sure that you have thorough knowledge of your projects/internships

Application resume tips for other job seekers

Tip 1 : Update your resume to highlight your strengths
Tip 2 : Remove unnecessary courses in which you aren’t confident

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What do you know about IBM?

Interview Preparation Tips

Interview preparation tips for other job seekers - What are the most immediate projects that need to be addressed?
Can you show me examples of projects I’d be working on?
What are the biggest challenges that someone in this position would face?

Interview Questionnaire 

2 Questions

  • Q1. Why should we choose you?
  • Ans. 

    I have the skills, experience, and passion to excel in this role.

    • I have a strong background in software development, with experience in multiple programming languages and frameworks.

    • I am a quick learner and enjoy tackling new challenges.

    • I am a team player and enjoy collaborating with others to achieve common goals.

    • I am passionate about software engineering and am always looking for ways to improve my skills and knowled...

  • Answered by AI
  • Q2. Why did you choose our company?
  • Ans. 

    I chose your company because of its reputation for innovation and its commitment to employee growth.

    • Your company has a strong reputation for innovation in the industry.

    • I was impressed by the emphasis on employee growth and development.

    • I believe that your company's values align with my own personal values.

    • I was excited about the opportunity to work with a talented team of engineers.

    • Your company's mission and vision reso

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: There were 2 technical rounds. Technical (software): These were tested-How a person approaches a problem,how he thinks.Solutions weren’t needed. Basic understanding, knowledge of Algorithms was tested.

Round: HR Interview
Experience: Knowledge in Machine learning, Artificial Intelligence (electives of the person)
Tips: Basic math would help. Speed doesn’t matter.

Skill Tips: For applying to Software profile, one needs to practice much.
College Name: IIT MADRAS

I was interviewed before Sep 2016.

Interview Preparation Tips

Round: Group Discussion
Experience: Interview was scheduled in Grab Job consultancy. In that, a class room, where we all asked to sit and interviewer was sitting in front and asked to speak one by one on the topic traffic situation in Hyderabad.
Tips: Just speak once two to three lines. Don't rush to speak. Take ur time and don't try speak repeatedly.
Duration: 35 minutes

Round: Technical Interview
Experience: System based test. Easy question from java , c, data structure.

Round: HR Interview
Experience: Not held because already we got too late.

Skills: Proficiency In English, Basic Coding
College Name: Medak College of engineering

Software Engineer Interview Questions & Answers

IBM user image Pooja Talapatra

posted on 7 May 2017

I was interviewed before May 2016.

Interview Preparation Tips

Round: HR Interview
Experience: There was only one interview and it varied from person to person. I was asked basic electrical questions on high voltage and why I wanted to join IBM.

Skills: HR Skills, Electrical Engineering Basics
College Name: NIT Durgapur

Interview Preparation Tips

Round: Test
Duration: 1 hour
Total Questions: 36

College Name: Swarnandhra college of engineering and technology

Cisco Interview FAQs

How many rounds are there in Cisco Software Developer Intern interview?
Cisco interview process usually has 2 rounds. The most common rounds in the Cisco interview process are Technical and Coding Test.
What are the top questions asked in Cisco Software Developer Intern interview?

Some of the top questions asked at the Cisco Software Developer Intern interview -

  1. Dijkastra's Algori...read more
  2. DSA Medium Questions on arrays & linkedL...read more
  3. Mostly asked about...read more

Tell us how to improve this page.

Cisco Software Developer Intern Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more
Cisco Software Developer Intern Salary
based on 5 salaries
₹5 L/yr - ₹11.5 L/yr
16% more than the average Software Developer Intern Salary in India
View more details

Cisco Software Developer Intern Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

4.0

Promotions

3.0

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

Technical Consulting Engineer
653 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
642 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Network Engineer
418 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
353 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cisco with

Google

4.4
Compare

Microsoft Corporation

4.0
Compare

Hewlett Packard Enterprise

4.2
Compare

Juniper Networks

4.2
Compare
Did you find this page helpful?
Yes No
write
Share an Interview