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 Interview Questions, Process, and Tips for Freshers

Updated 26 Mar 2025

Top Cisco Interview Questions and Answers for Freshers

View all 35 questions

Cisco Interview Experiences for Freshers

Popular Designations

53 interviews found

I applied via YouTube and was interviewed before Sep 2021. There were 4 interview rounds.

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 tips
Round 2 - Aptitude Test 

Reasoning, English grammar, logical

Round 3 - Technical 

(2 Questions)

  • Q1. Networking, python coding
  • Q2. Based on resume they are asked basically networking
Round 4 - HR 

(1 Question)

  • Q1. Asking about Cisco, strength

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence yourself,do hardwork,then definitely you can achieve.🙂

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

I applied via Referral and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What are some of the top deals you've taken part in?
  • Ans. 

    I have taken part in several deals, including the acquisition of a major hardware company and negotiating partnerships with top tech firms.

    • Acquisition of a major hardware company

    • Negotiating partnerships with top tech firms

    • Securing funding for a new product launch

    • Leading a team in the development of a new hardware product

    • Successfully launching a new product in a competitive market

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I named some of the top accounts that I was involved in and how we closed the deal successfully

System Engineer Hardware Interview Questions asked at other Companies

Q1. How many such letter-pairs are there in the word SERVANT, having the same no. of letters left between them in the word as they have in the series?
View answer (2)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed before Aug 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. About college project
Round 2 - Assignment 

Web development on food website and

Interview Preparation Tips

Topics to prepare for Cisco Internship Trainee interview:
  • Web Development

Internship Trainee Interview Questions asked at other Companies

Q1. Tell about your UG project? How will you design a table for 1 tonne load and what are all the consideration needed for it? Tell the Equations you know in strength of Materials? What are manufacturing processes involved to fabricate ball bea... read more
View answer (2)

I applied via Naukri.com and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Assignment 
Round 3 - HR 

(1 Question)

  • Q1. How to interact with colleagues

Interview Preparation Tips

Interview preparation tips for other job seekers - Try and try until u reach ur goal

Cisco interview questions for popular designations

 Software Engineer

 (59)

 Software Developer

 (26)

 Senior Software Engineer

 (10)

 Technical Consultant

 (8)

 Hardware Engineer

 (8)

 Technical Consulting Engineer

 (8)

 Apprentice

 (8)

 Network Engineer

 (7)

Interview Questions & Answers

user image Anonymous

posted on 4 Apr 2022

I appeared for an interview before Apr 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The 1st round was a MCQ round consisting of 50 problems in 1 hour. The questions were from aptitude, Data structures, microprocessors and some common puzzles.

  • Q1. What is the Josephus problem, and how does it relate to the concept of the Queens?
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

The interview started with the general Tell me about Yourself. He mainly wanted to know my subjects and fields of interest. he gave a DSA question. You are given a sorted array and your objective is to construct a BST out of it. The constructed BST should have the shortest possible height. I had to first explain my approach to the problem and when he was convinced I was asked to write the full code for the problem

  • Q1. 

    Dijkstra's Shortest Path Problem Statement

    You are given an undirected graph with V vertices (numbered from 0 to V-1) and E edges. Each edge connects two nodes u and v and has an associated weight represe...

Round 3 - HR 

Round duration - 10 minutes
Round difficulty - Easy

HR asked me about my zone of interests and explained to me some basic rules and what I have to do if I face any kind of problem

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SWE Intern in BangaloreEligibility criteriaAbove 7 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 - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Try solving the question on your own.
Tip 2 : Practice regularly
Tip 3 : Do some good projects, so that concepts will become clear.

Application resume tips for other job seekers

Tip 1 : Highlight your skills.
Tip 2 : Highlight your previous internships.

Final outcome of the interviewSelected

Get interview-ready with Top Cisco Interview Questions

Interview Questionnaire 

2 Questions

  • Q1. Basic about which branch from you and what projects you have done in your B.tech.
  • Q2. Achievement what you have done in your life.

Jobs at Cisco

View all

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

This was the initial round consisting of some aptitude questions,technical multiple choice questions and one coding question.
The Multiple Choice Questions were pretty straight forward.

  • Q1. 

    Snake and Ladder Problem Statement

    Given a 'Snake and Ladder' board with N rows and N columns, where positions are numbered from 1 to (N*N) starting from the bottom left, alternating direction each row, f...

  • Ans. 

    Find the minimum number of dice throws required to reach the last cell on a 'Snake and Ladder' board.

    • Start from the bottom left cell and move according to dice outcomes (1-6).

    • Utilize snakes and ladders to reach the last cell faster.

    • Keep track of the minimum number of throws required to reach the last cell.

    • If unreachable, return -1 as output.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

I had two interviewers in this round.Some Problem solving questions were asked in this round.

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    Check if two strings are anagrams of each other by comparing their sorted characters.

    • Sort the characters of both strings and compare them.

    • Use a dictionary to count the frequency of characters in each string and compare the dictionaries.

    • Ensure both strings have the same length before proceeding with comparison.

    • Example: For input 'spar' and 'rasp', after sorting both strings, they become 'aprs' which are equal, so return

  • Answered by AI
  • Q2. Can you explain all the main Object Oriented Programming concepts?
  • Ans. 

    Object Oriented Programming concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class). Example: Class Car with properties like color and methods like drive().

    • Inheritance: Creating new classes based on existing classes, inheriting their attributes and methods. Example: Class SUV inheriting from class Car.

    • Polymor...

  • Answered by AI
  • Q3. Can you explain one of your projects?
Round 3 - Video Call 

Round duration - 45 Minutes
Round difficulty - Easy

Number Of Interviewers : 2
I was asked two problem solving questions and I was asked to explain my projects.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteria7 CGPA, No backlog history, Only students of particular branches could applyCisco interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Object Oriented Programming Concepts, Operating Systems, Database Management Systems, Computer Communication NetworksTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Focus on mastering the concept and then you'll be able to solve problems
Tip 2 : Do not get demotivated,it's common to get rejected by MNCs.Once you are well prepared,you will end up with the right offer

Application resume tips for other job seekers

Tip 1 : Be thorough with every single word mentioned in your resume.
Tip 2 : Don't mention projects unless you have a complete understanding of the technologies used in the project.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Cisco Software Developer Interview Questions and Answers

Q1. Snake and Ladder Problem Statement Given a 'Snake and Ladder' board with N rows and N columns, where positions are numbered from 1 to (N*N) starting from the bottom left, alternating direction each row, find the minimum number of dice throw... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

I appeared for an interview 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

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The test was in the evening which was not too late. It was conducted on Hackerrank which is a very common platform and was hence familiar. There were 26 questions:
Q1: Coding Question
3 languages were allowed: c, java8, python3
Q2 - Q26: Multiple Choice Questions

  • Q1. 

    Intersection of Linked List Problem

    You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list.

    Your task is to determine t...

  • Ans. 

    Find the node where two linked lists merge, return -1 if no merging occurs.

    • Traverse both lists to find the lengths and the last nodes

    • Align the starting points of both lists by moving the longer list's pointer ahead by the difference in lengths

    • Traverse both lists simultaneously until a common node is found, which is the merging point

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaDegree & Specialisation : B.Tech (Computer Science) B.Tech (Information Technology) B.Tech (Electronics & Communication) B.Tech (Electrical & Electronics) MCA M.Sc (Computer Science), Year of Graduation : 2021, CGPA : 7.5 and above, No Current BacklogsCisco interview preparation:Topics to prepare for the interview - Data Communication and Networks, Data Structures, SQL, OOPS, C, C++, JavaTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice competitive programming as much as possible. It's never too late. Start now. But it is important to practice before appearing for the paper.
Tip 2 : Try to start making projects early on as it plays a major role during the interviews. 
Tip 3 : Be involved in extra curricular activities and events like Hackathons even if you don't win all of them. It gives a lot of exposure and experience.
Tip 4 : Don't lose touch with your core subjects.
Tip 5 : An internship/training from a good organization always helps (though don't lose hope if you don't have it).
Tip 6 : Focus on your communication skills along with your core subjects as it helps in giving a good impression during the interviews.

Application resume tips for other job seekers

Tip 1 : Maintain a good CGPA (above 7.5)
Tip 2 : Mention your projects as they are noticed in the interview
Tip 3 : Having an internship experience especially from a good organization helps
Tip 4 : Focus on extra curricular activities too
Tip 5 : Do not put things you are not sure about

Final outcome of the interviewRejected

Skills evaluated in this interview

Top Cisco Software Developer Interview Questions and Answers

Q1. Snake and Ladder Problem Statement Given a 'Snake and Ladder' board with N rows and N columns, where positions are numbered from 1 to (N*N) starting from the bottom left, alternating direction each row, find the minimum number of dice throw... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Intern Interview Questions & Answers

user image Anonymous

posted on 4 Jul 2021

Interview Questionnaire 

1 Question

  • Q1. Basic question of oops

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Cisco Interview FAQs

How many rounds are there in Cisco interview for freshers?
Cisco interview process for freshers usually has 2-3 rounds. The most common rounds in the Cisco interview process for freshers are Technical, HR and Aptitude Test.
How to prepare for Cisco interview for freshers?
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 cisco.
What are the top questions asked in Cisco interview for freshers?

Some of the top questions asked at the Cisco interview for freshers -

  1. Can you use a variable in a file using extern which is defined as both static a...read more
  2. If you are not having a sizeof operator in C, how will you get to know the size...read more
  3. When we declare union in C, how is the size of union allocated in the memo...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.

Cisco Interview Process for Freshers

based on 25 interviews

Interview experience

4.4
  
Good
View more

Interview Questions from Similar Companies

Nokia Networks Interview Questions
4.2
 • 113 Interviews
Nvidia Interview Questions
3.7
 • 108 Interviews
BT Business Interview Questions
4.0
 • 81 Interviews
Arista Networks Interview Questions
4.1
 • 43 Interviews
TransPerfect Interview Questions
3.4
 • 24 Interviews
View all

Cisco Reviews and Ratings

based on 1.9k reviews

4.2/5

Rating in categories

3.9

Skill development

4.3

Work-life balance

3.9

Salary

3.5

Job security

4.2

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 1.9k Reviews and Ratings
Customer Experience Apps and AI Product Manager

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

Technical Solutions Architect - BFSI

Mumbai

15-20 Yrs

Not Disclosed

Explore more jobs
Software Engineer
2.7k salaries
unlock blur

₹9.8 L/yr - ₹40 L/yr

Senior Software Engineer
654 salaries
unlock blur

₹14 L/yr - ₹48.8 L/yr

Technical Consulting Engineer
651 salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Network Engineer
397 salaries
unlock blur

₹3.9 L/yr - ₹17 L/yr

Software Developer
359 salaries
unlock blur

₹17.9 L/yr - ₹43.1 L/yr

Explore more salaries
Compare Cisco with

Google

4.4
Compare

Microsoft Corporation

4.0
Compare

Sterlite Technologies

3.8
Compare

Nokia Networks

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