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

Clear (1)

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Coding Test 

Easy problem on java

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on the CV details
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Coding Test 

7 easy coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Data Structures and Algorithms, SQL and DataBase design, Java concepts, OOPS concepts, OS
Round 3 - Technical 

(1 Question)

  • Q1. DSA Medium level, SQL Medium level, Java, OOPS
Round 4 - Technical 

(1 Question)

  • Q1. Managerial round - Resume, Projects, behavioural questions. Interview was very friendly

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation is key. Be strong in fundamentals

I applied via LinkedIn and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. Data structure and C++
  • Q2. Reverse Linked list
  • Q3. Multi threaded queue
  • Q4. Design pattern
  • Q5. Basic C++ concepts
  • Q6. Puzzles

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve data structure problems
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Threading: Write and use a mutex?
  • Ans. 

    A mutex is a synchronization primitive that ensures only one thread can access a resource at a time.

    • Create a mutex object using the appropriate library or language-specific function.

    • Lock the mutex before accessing the shared resource to prevent other threads from accessing it.

    • Unlock the mutex after finishing the operation on the shared resource to allow other threads to access it.

    • Example: pthread_mutex_t mutex; pthread...

  • Answered by AI
  • Q2. Find the memory leak in a given set of code.
  • Ans. 

    Identify memory leak in code

    • Check for any dynamically allocated memory that is not being freed

    • Look for any infinite loops or recursive functions that consume memory

    • Use memory profiling tools like Valgrind to detect leaks

    • Check for any global variables that are not properly managed

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning And aptitude test

Round 2 - Coding Test 

C++, python and Java programming

Interview Preparation Tips

Topics to prepare for Gen Software Engineer interview:
  • C++
  • Python
Interview preparation tips for other job seekers - I am interested for this company opportunity for giving me and I am so happy and giving me for work from home job
Contribute & help others!
anonymous
You can choose to be anonymous

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

Recently Viewed

INTERVIEWS

Cisco

No Interviews

REVIEWS

Deutsche Telekom Digital Labs

No Reviews

JOBS

Deutsche Telekom Digital Labs

No Jobs

SALARIES

Aryaka Networks

INTERVIEWS

Aryaka Networks

No Interviews

REVIEWS

Bridgei2i Analytics Solutions

No Reviews

REVIEWS

Deutsche Telekom Digital Labs

No Reviews

SALARIES

Tech Mahindra

REVIEWS

Bridgei2i Analytics Solutions

No Reviews

REVIEWS

Bridgei2i Analytics Solutions

No Reviews

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
643 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
642 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Network Engineer
417 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
344 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