Upload Button Icon Add office photos

Cisco

Compare button icon Compare button icon Compare
4.2

based on 1.7k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Cisco Software Engineer Intern Interview Questions and Answers

Updated 11 Jul 2024

Cisco Software Engineer Intern Interview Experiences

5 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Questions on c/c++ concepts
Round 2 - Technical 

(1 Question)

  • Q1. Question on doubly linked list
Round 3 - One-on-one 

(1 Question)

  • Q1. Manegerial round - why cisco
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. In a sorted matrix of 0s and 1s, return the row with max 1s
  • Ans. 

    Iterate through each row and count the number of 1s, return the row with the maximum count.

    • Iterate through each row of the matrix

    • Count the number of 1s in each row

    • Track the row with the maximum count of 1s

  • Answered by AI

Skills evaluated in this interview

Software Engineer Intern Interview Questions Asked at Other Companies

Q1. Check if two trees are MirrorYou are given two arbitrary binary t ... read more
asked in NCR Voyix
Q2. Search In Rotated Sorted ArrayYou have been given a sorted array/ ... read more
Q3. Connect N Ropes With Minimum CostYou have been given 'N' ropes of ... read more
Q4. Zero MatrixYou are given a matrix 'MATRIX' of dimension 'N' x 'M' ... read more
Q5. Partition a set into two subsets such that the difference of subs ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

CSE fundamentals, 90 min, hackerank, DSA

Round 2 - Technical 

(2 Questions)

  • Q1. Related to Linkedlist
  • Q2. Related to Cache
Round 3 - HR 

(1 Question)

  • Q1. Behavioural questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I was interviewed before Apr 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Asked to check if a string is palindrome or not. remove duplicates from a string. questions on networks. asked about projects.
Round 2 - Technical 

(1 Question)

  • Q1. Asked about aws, infrastructure, networking questions, situational questions
Round 3 - HR 

(1 Question)

  • Q1. Current competitors, relocation, interests/hobbies.

Cisco interview questions for designations

 Software Developer Intern

 (5)

 Software Development Engineer Intern

 (1)

 Software Engineer Intern Trainee

 (1)

 Software Engineer

 (64)

 Senior Software Engineer

 (10)

 Software QA Engineer

 (4)

 Software Engineer III

 (2)

 Lead Software Engineer

 (1)

Software Engineer | Software Engineer Intern interview

user image Arsh Goyal

posted on 3 Dec 2021

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. OOPs and Hashing related questions

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was a coding round. Two coding questions.

  • Q1. Check if two trees are Mirror

    You are given two arbitrary binary trees consisting of N and M number of nodes respectively, your task is to check whether the two trees are mirror of each other or not.

    Two...

  • Ans. Recursive Approach

    Traverse the tree T in preorder fashion and treat every node of the given tree T as the root, treat it as a subtree and compare the corresponding subtree with the given subtree S for equality. For checking the equality, we can compare all the nodes of the two subtrees.

     

    For two trees ‘S’ and ‘T’ to be mirror images, the following three conditions must be true:

    1. Their root node’s data must be the sam...
  • Answered by CodingNinjas
  • Q2. Partition a set into two subsets such that the difference of subset sums is minimum.

    You are given an array containing N non-negative integers. Your task is to partition this array into two subsets such th...

  • Ans. Recursion
    • This problem can be solved using recursion. And the idea behind this is to generate all the possible sums from the given set.
    • We will try different combinations for one of the subsets and accordingly calculate the sums of both the subsets and store the minimum. Assume that the sum of elements of the array is SUM, and sum of the elements of the first subset is S1, thus we can find the sum of 2nd subset as SUM - ...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer Intern in PuneEligibility criteriaGPA greater than 7.5Sterlite Technologies Limited interview preparation:Topics to prepare for the interview - Analog Electronics, Digital Electronics, Communication Network, Basic Electronics Devices, Data Structures and algorithmsTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : For analog one can refer to Behzad Razavi on YouTube
Tip 2 : Be clear with working of zener diode, rectifier opération and pn junction ideal model
Tip 3 : A project using Arduino Uno is plus, and sufficient knowledge of Python

Application resume tips for other job seekers

Tip 1 : Be simple and clear in your points. Don't exaggerate
Tip 2 : Be prepare with with hobbies mentioned in resume

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. Find missing number from nth number array.
  • Ans. 

    Find missing number from nth number array.

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2

    • Subtract the sum of array from the sum of numbers from 1 to n to find the missing number

  • Answered by AI
  • Q3. Explain inheritance and it types
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.

    • Example: Class B inherits from Class A, so Class B can access

  • Answered by AI
  • Q4. Find 2nd max elements from aaray
  • Ans. 

    Find 2nd max element from array of strings

    • Sort the array in descending order

    • Skip the first element (max element)

    • Return the second element

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Check if the linked list is palindrome or not
  • Ans. 

    To check if a linked list is a palindrome, compare the first half of the list with the reversed second half.

    • Traverse the linked list to find the middle node

    • Reverse the second half of the linked list

    • Compare the first half with the reversed second half to check for palindrome

  • Answered by AI
  • Q2. C string questions
Round 2 - Technical 

(2 Questions)

  • Q1. Operating systems questions
  • Q2. Linked list and system design question

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Data structure algorithm questions related to various scenarios
  • Q2. DS Algo related questions which revolved around different scenarios

Cisco Interview FAQs

How many rounds are there in Cisco Software Engineer Intern interview?
Cisco interview process usually has 2-3 rounds. The most common rounds in the Cisco interview process are Technical, HR and One-on-one Round.
What are the top questions asked in Cisco Software Engineer Intern interview?

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

  1. in a sorted matrix of 0s and 1s, return the row with max...read more
  2. asked to check if a string is palindrome or not. remove duplicates from a strin...read more
  3. asked about aws, infrastructure, networking questions, situational questi...read more

Tell us how to improve this page.

Cisco Software Engineer Intern Interview Process

based on 4 interviews in last 1 year

2 Interview rounds

  • Technical Round 1
  • Technical Round 2
View more

People are getting interviews through

based on 2 Cisco interviews
Job Portal
Campus Placement
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

IBM Interview Questions
4.1
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 876 Interviews
Dell Interview Questions
4.1
 • 385 Interviews
VMware Software Interview Questions
4.4
 • 152 Interviews
Nvidia Interview Questions
3.7
 • 102 Interviews
NetApp Interview Questions
3.9
 • 61 Interviews
View all
Cisco Software Engineer Intern Salary
based on 5 salaries
₹10 L/yr - ₹16 L/yr
75% more than the average Software Engineer Intern Salary in India
View more details

Cisco Software Engineer Intern Reviews and Ratings

based on 5 reviews

4.9/5

Rating in categories

4.9

Skill development

4.6

Work-Life balance

4.8

Salary & Benefits

4.6

Job Security

4.5

Company culture

4.8

Promotions/Appraisal

4.8

Work Satisfaction

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

₹10 L/yr - ₹37.8 L/yr

Technical Consulting Engineer
648 salaries
unlock blur

₹8.4 L/yr - ₹30 L/yr

Senior Software Engineer
615 salaries
unlock blur

₹13.4 L/yr - ₹48.8 L/yr

Network Engineer
392 salaries
unlock blur

₹3.8 L/yr - ₹15.6 L/yr

Network Consulting Engineer
343 salaries
unlock blur

₹10 L/yr - ₹36 L/yr

Explore more salaries
Compare Cisco with

Google

4.4
Compare

Microsoft Corporation

4.1
Compare

Hewlett Packard Enterprise

4.2
Compare

Juniper Networks

4.2
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview