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 Softwaretest Engineer Interview Questions and Answers

Updated 15 Nov 2024

Cisco Softwaretest Engineer Interview Experiences

4 interviews found

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

DATA STRUCTURES,JAVA,COMPUTER NETWORKS

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

Generally Focus on networking part

Round 2 - Coding Test 

DSA and basic python program if you have basic knowledge you can get into next Round easily

Round 3 - HR 

(1 Question)

  • Q1. Basic hr questions

Softwaretest Engineer Interview Questions Asked at Other Companies

asked in Playablo
Q1. What is boundary value analysis? How do u perform boundary value ... read more
asked in Playablo
Q2. If u get a blocker defect just the previous day of ur release dat ... read more
Q3. 1. What is STLC, SDLC 2. What is the bug Life cycle. 3. Differenc ... read more
Q4. - Print the frequency of each alphabet for the given string. - Sw ... read more
asked in Playablo
Q5. Write Sql query for displaying total number of students from chil ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Networking concepts
Round 2 - Coding Test 

Python programming, Networking concepts

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.🙂

Cisco interview questions for designations

 Software Engineer

 (59)

 Network Engineer

 (7)

 Data Engineer

 (3)

 TAC Engineer

 (3)

 UI Engineer

 (1)

 QA Engineer

 (1)

 Senior Software Engineer

 (10)

 Software QA Engineer

 (4)

Interview questions from similar companies

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

(1 Question)

  • Q1. How does packet travel in switch network
  • Ans. 

    Packets travel in a switch network by being forwarded based on the destination MAC address.

    • Packets are received by the switch on an incoming port.

    • The switch looks up the destination MAC address in its MAC address table.

    • If the MAC address is found, the packet is forwarded out the corresponding port.

    • If the MAC address is not found, the packet is flooded out all ports except the incoming port.

    • Switches operate at Layer 2 o

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Sep 2023. There were 3 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 - Coding Test 

There were 2 coding questions and 20 aptitude questions. Coding questiins were based in trees and graphs

Round 3 - Technical 

(2 Questions)

  • Q1. Mainly dsa, oops questions were asked
  • Q2. Find cycle in linked list
  • Ans. 

    Use Floyd's Tortoise and Hare algorithm to detect cycle in a linked list.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps.

    • If they meet at any point, there is a cycle in the linked list.

    • If fast pointer reaches the end of the list, there is no cycle.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Whatever you write in resume, prepare it nicely.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. In the first round, questions were mainly related to the code written in the coding round. 1 take home assignment was given that has to be submitted within 1 week. So the questions were related to that.
  • Q2. In the second round, 1 live coding session was there along with that some general software enginnering questions related to git. Couple of logical reasoning questions were also asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to write questions in a notebook and build your answer, it helps a lot. This advice is mainly for logical reasoning and coding related questions. (This interview is taken through video call during pandemic, so no white board available)

I applied via Approached by Company and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Coding test realted to c or cpp will be taken.

Round 2 - Technical 

(1 Question)

  • Q1. Technical question realted to 4G and 5G NR will be asked.
Round 3 - Technical 

(1 Question)

  • Q1. Technical 2 round questions realted to programming language you need to write and explain.
Round 4 - HR 

(1 Question)

  • Q1. About youself and then salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Just Clear your concepts before attending the interviews.

I applied via Naukri.com and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is OOPs concept?
  • Ans. 

    OOPs concept stands for Object-Oriented Programming concepts which includes encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation is the process of hiding the implementation details from the user.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Polymorphism allows objects to take on multiple forms or behaviors.

    • Abstraction is the process of hiding unnecessary details from

  • Answered by AI
  • Q2. What is lazy loading?
  • Ans. 

    Lazy loading is a technique used to defer the loading of non-critical resources until they are needed.

    • It improves page load time and performance.

    • It is commonly used for images, videos, and other media files.

    • It can be implemented using JavaScript libraries like LazyLoad or Intersection Observer API.

    • Lazy loading can also be used for modules and components in web applications.

    • It helps to reduce the initial load time of th

  • Answered by AI
  • Q3. What is eager loading?
  • Ans. 

    Eager loading is a technique used in software development to load related data in advance to avoid multiple database queries.

    • Eager loading is used to optimize database queries and improve performance.

    • It loads all the required data in a single query instead of making multiple queries.

    • It is commonly used in Object-Relational Mapping (ORM) frameworks like Hibernate, Entity Framework, etc.

    • Eager loading can be used with var...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clearing Test is the key

Skills evaluated in this interview

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Timing: Morning
How was the environment? It happened in the Computer Lab of my institution
All students were assigned a computer and we had to solve questions on hackerrank

  • Q1. 

    Order of People Heights Problem Statement

    Consider 'N' individuals numbered from 0 to N-1 standing in a queue. You are provided with two arrays: Height and Infront, each consisting of 'N' non-negative int...

  • Ans. 

    The task is to find the actual order of people in a queue based on their heights and the number of taller people in front of them.

    • Iterate through the given arrays and create a list of tuples containing the height and number of taller people for each person.

    • Sort the list of tuples in descending order of height and ascending order of the number of taller people.

    • Create an empty result list and insert each tuple into the r...

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Round was a mix of concepts from OOPS, OS and Problem Solving

  • Q1. 

    Binary Search Tree Value Finder

    Given a Binary Search Tree (BST) and a key value 'X', determine if there exists a node within the BST containing the value 'X'.

    Example:

    Input:
    Consider the tree represe...
  • Ans. 

    The task is to find if a given value is present in a Binary Search Tree (BST).

    • Start from the root node and compare the value with the target value.

    • If the value matches, return true.

    • If the target value is less than the current node value, move to the left child.

    • If the target value is greater than the current node value, move to the right child.

    • Repeat the process until a match is found or a leaf node is reached.

    • If a leaf...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANVIDIA interview preparation:Topics to prepare for the interview - Data Structures, Algorithms(basic), DBMS, Operating systems, basics of web development.Time required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Try to code the data structures that you have learned to understand things better
Tip 2 : Try to solve the problem even if it is the worst possible solution you think and then try to optimize don't jump to get the
best possible solution
Tip 3 : Discuss things among peers it helps to improve the understanding, even try to teach someone anything new you learn, this is very helpful during the interviews as you will have habit of explaining things

Application resume tips for other job seekers

Tip 1 : Try to be honest in the resume don't write something you don't know, most of the time it backfires.
Tip 2 : Try to make 2 good projects for cv and know about the challenges you can face on the project and think about how you can solve that challenge.

Final outcome of the interviewSelected

Skills evaluated in this interview

Cisco Interview FAQs

How many rounds are there in Cisco Softwaretest Engineer interview?
Cisco interview process usually has 2-3 rounds. The most common rounds in the Cisco interview process are Coding Test, Aptitude Test and Technical.
How to prepare for Cisco Softwaretest Engineer 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 Automation Testing, Bgp, CCNA, CCNP and Civil Engineering.
What are the top questions asked in Cisco Softwaretest Engineer interview?

Some of the top questions asked at the Cisco Softwaretest Engineer interview -

  1. Based on resume they are asked basically network...read more
  2. Networking, python cod...read more
  3. Networking conce...read more

Tell us how to improve this page.

Cisco Softwaretest Engineer Interview Process

based on 4 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Nokia Networks Interview Questions
4.2
 • 113 Interviews
Nvidia Interview Questions
3.7
 • 107 Interviews
BT Business Interview Questions
4.0
 • 81 Interviews
Arista Networks Interview Questions
4.2
 • 43 Interviews
TransPerfect Interview Questions
3.4
 • 22 Interviews
View all
Cisco Softwaretest Engineer Salary
based on 251 salaries
₹2 L/yr - ₹9.5 L/yr
15% less than the average Softwaretest Engineer Salary in India
View more details

Cisco Softwaretest Engineer Reviews and Ratings

based on 38 reviews

4.1/5

Rating in categories

3.7

Skill development

4.3

Work-life balance

3.9

Salary

3.7

Job security

4.1

Company culture

3.8

Promotions

3.6

Work satisfaction

Explore 38 Reviews and Ratings
Software Engineer
2.7k salaries
unlock blur

₹9.9 L/yr - ₹40 L/yr

Senior Software Engineer
656 salaries
unlock blur

₹14 L/yr - ₹49 L/yr

Technical Consulting Engineer
643 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