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

Updated 27 Jun 2024

Cisco Software QA Engineer Interview Experiences

4 interviews found

Software QA Engineer Interview Questions & Answers

user image Dhananjay Parab

posted on 27 Jun 2024

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

List, Dictionries with API

Round 2 - Technical 

(2 Questions)

  • Q1. Debug the test code written in Python
  • Ans. 

    Debugging test code in Python

    • Check for syntax errors and typos in the code

    • Use print statements to track the flow of the code and identify any issues

    • Review the logic of the code to ensure it is correctly implemented

    • Utilize debugging tools like pdb or IDE debuggers to step through the code

  • Answered by AI
  • Q2. What is Python Path
  • Ans. 

    Python Path is the location where Python is installed on a computer.

    • Python Path is the directory where the Python interpreter is located.

    • It is used by the operating system to find and execute Python scripts.

    • The Python Path can be set as an environment variable to make it easier to run Python scripts from any directory.

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed in Apr 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Be thorough with you own resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - For the QA post there was an initial screening test (2 coding question + 8 MCQ ). The interview process was completed within a day.

Software QA Engineer Interview Questions Asked at Other Companies

asked in Encora
Q1. What exceptions have u faced while creating framework?
asked in Weavers Web
Q2. What is the difference between Software Development Life Cycle (S ... read more
Q3. What is Bug tracking and explain their bug life cycle?
asked in Nvidia
Q4. Design Test cases for A Deseal Car Engine. Cover all test cases
Q5. Questions related to QA< basic , scenario based questions

I applied via LinkedIn and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Python for automation. Rest of the technical questions were based on my work profile and few routing, switching,vlan and security related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepare for Python written test by hacker rank. And most of the profiles in Cisco are mainly looking about Python. If you are not strong technically that's fine but they expect atleast you should be an expert or best in python .

Interview Questionnaire 

1 Question

  • Q1. Mostly networking questions and a few computer science questions

Interview Preparation Tips

Round: Test
Experience: Test based on Logical ability and Electronics/Computer Science concepts
Duration: 1 hour 15 minutes
Total Questions: 35

Round: Technical Interview
Experience: Basics of networking, TCP/IP and computer science questions like linked list etc

College Name: Manipal Institute Of Technology, Manipal

Cisco interview questions for designations

 QA Engineer

 (1)

 Software Engineer

 (59)

 Senior Software Engineer

 (10)

 Software Engineer Intern

 (4)

 Software Engineer III

 (2)

 Software Engineer II

 (1)

 Lead Software Engineer

 (1)

 Software Testing Engineer

 (1)

Software QA Engineer Jobs at Cisco

View all

Interview questions from similar companies

I applied via LinkedIn and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic manual testing questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to learn and management is supportive

I applied via Nvidea and was interviewed in Nov 2021. 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 - HR 

(1 Question)

  • Q1. HR Asks general questions. past experience pass out year. current base out of and elaborated GD to me once again.
Round 3 - Technical 

(5 Questions)

  • Q1. Difference between List and Tuples? in python
  • Ans. 

    List is mutable and Tuples are immutable in Python.

    • Lists are enclosed in square brackets [], while Tuples are enclosed in parentheses ().

    • Elements of a list can be changed, added or removed, while elements of a tuple cannot be changed.

    • Lists are slower than tuples due to their mutable nature.

    • Tuples are used for fixed data, while lists are used for dynamic data.

    • Lists are used for homogenous data, while tuples are used for

  • Answered by AI
  • Q2. What Android basic component
  • Ans. 

    The basic components of Android are activities, services, broadcast receivers, and content providers.

    • Activities are the user interface components that allow users to interact with the app.

    • Services are background components that perform long-running operations.

    • Broadcast receivers are components that receive and respond to system-wide broadcast announcements.

    • Content providers are components that manage a shared set of ap

  • Answered by AI
  • Q3. Explain about android architecture system.
  • Ans. 

    Android architecture system is a layered architecture consisting of four main layers.

    • The four main layers are Linux kernel, native libraries, application framework, and applications.

    • The Linux kernel provides low-level hardware abstraction and security.

    • Native libraries are written in C or C++ and provide access to hardware-specific features.

    • Application framework provides high-level services such as activity management, ...

  • Answered by AI
  • Q4. How does Open GL graphics Works in android
  • Ans. 

    OpenGL is a graphics API used in Android to render 2D and 3D graphics.

    • OpenGL is a cross-platform API that allows developers to create high-performance graphics applications.

    • It uses a pipeline-based model to process graphics data.

    • OpenGL ES (Embedded Systems) is the version of OpenGL used in Android.

    • It supports features like texture mapping, lighting, and shading.

    • Developers can use OpenGL in Android to create games, visu...

  • Answered by AI
  • Q5. Design Test cases for A Deseal Car Engine. Cover all test cases
  • Ans. 

    Design test cases for a deseal car engine

    • Test for engine starting and stopping

    • Test for oil pressure and temperature

    • Test for fuel efficiency

    • Test for exhaust emissions

    • Test for engine noise and vibration

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare some basics on python and go through your resume once again. they dig very deep into resume

Skills evaluated in this interview

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

(2 Questions)

  • Q1. I was asked about basic QA questions. One coding question on Recursion
  • Q2. Coding question on Recursion

I appeared for an interview in Apr 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Timing was 12 PM. Interviewer was nice.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    Reverse a given string containing alphabets, numbers, and special characters.

    • Iterate through the string from end to start and append each character to a new string.

    • Alternatively, use built-in functions like reverse() or slicing to reverse the string.

    • Handle special characters and numbers while reversing the string.

    • Ensure to consider the constraints on the length of the string and number of test cases.

  • Answered by AI
  • Q2. 

    Move Zeros to Left Problem Statement

    Your task is to rearrange a given array ARR such that all zero elements appear at the beginning, followed by non-zero elements, while maintaining the relative order of...

  • Ans. 

    Rearrange an array such that all zero elements appear at the beginning, followed by non-zero elements, maintaining relative order of non-zero elements.

    • Iterate through the array and maintain two pointers - one for the next position to place a zero and one for the next non-zero element.

    • Swap the elements at these pointers until all zeros are moved to the left and non-zero elements are in their relative order.

    • Time complexi...

  • Answered by AI
  • Q3. Write an SQL query to find the second highest salary from a table.
  • Ans. 

    SQL query to find the second highest salary from a table

    • Use the MAX() function to find the highest salary

    • Use the NOT IN operator to exclude the highest salary from the results

    • Order the salaries in descending order and limit the result to 1

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as SDE - 1 in NoidaEligibility criteriaAbove 8 CGPAWatchGuard Technologies interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do some projects.
Tip 2 : Practice problem solving questions.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Online test

  • Q1. MCQ Questions

    Based on c++,c and java basics

  • Ans. 

    MCQ questions based on C++, C, and Java basics.

    • Understand the differences between C++, C, and Java syntax and features.

    • Be familiar with basic concepts like data types, control structures, and functions.

    • Practice solving MCQs to improve your understanding of the languages.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

Technical interview

  • Q1. 

    Distinct Elements in K-Sized Windows

    The task is to determine the number of distinct elements in every sliding window of size 'K' across an array 'ARR' of size 'N'. A 'K' sized window is a contiguous sequ...

  • Ans. 

    Calculate the count of distinct elements in each sliding window of size 'K' across an array 'ARR'.

    • Use a sliding window approach to iterate through the array and keep track of distinct elements using a hashmap or set.

    • Update the count of distinct elements in each window as it slides across the array.

    • Return the array detailing the count of distinct elements in each 'K' sized window for each test case.

  • Answered by AI
  • Q2. 

    MergeSort Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to sort the list using the 'Merge Sort' algorithm.

    Input:

    The input consists of a single line contain...
  • Ans. 

    Sort a Singly Linked List using Merge Sort algorithm.

    • Implement the Merge Sort algorithm for linked lists.

    • Divide the list into two halves, sort each half recursively, and then merge them.

    • Use a fast and slow pointer to find the middle of the list for splitting.

    • Handle the base cases of empty list or single node list.

    • Example: Input: 4 3 2 1 -1, Output: 1 2 3 4

  • Answered by AI
Round 3 - Coding Test 

Round duration - 20 minutes
Round difficulty - Hard

Hr interview

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteria80% and above in 10th,12th and ugWatchGuard Technologies interview preparation:Topics to prepare for the interview - Stack Implementation, DBMS, SQL QUERIES, Data structure and ADATime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Go through oosp concept properly
Tip 2 : Good knowledge on coding
Tip 3 : intermediate knowledge on database and data structures

Application resume tips for other job seekers

Tip 1 : A project based on database
Tip 2 : Mention all the fields properly and have a prior knowledge on your project

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Generic dotnet questions mcq

Round 2 - One-on-one 

(1 Question)

  • Q1. .net, c# , sql , async questions
Round 3 - Coding Test 

One problem is given need to make logic and your current project details

Round 4 - Group Discussion 

Managerial round was taken at the end

Interview Preparation Tips

Interview preparation tips for other job seekers - They are very slow. They take really long time to release offer but want candidate to join immediately.

Cisco Interview FAQs

How many rounds are there in Cisco Software QA Engineer interview?
Cisco interview process usually has 2 rounds. The most common rounds in the Cisco interview process are Coding Test and Technical.
How to prepare for Cisco Software QA 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, Cisco, Debugging, Python and Computer Networking.
What are the top questions asked in Cisco Software QA Engineer interview?

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

  1. Debug the test code written in Pyt...read more
  2. What is Python P...read more
  3. Python for automation. Rest of the technical questions were based on my work pr...read more

Tell us how to improve this page.

Cisco Software QA Engineer Interview Process

based on 1 interview

2 Interview rounds

  • Technical Round
  • Aptitude Test Round
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.2
 • 43 Interviews
TransPerfect Interview Questions
3.4
 • 23 Interviews
View all
Cisco Software QA Engineer Salary
based on 84 salaries
₹11 L/yr - ₹40 L/yr
236% more than the average Software QA Engineer Salary in India
View more details

Cisco Software QA Engineer Reviews and Ratings

based on 8 reviews

4.4/5

Rating in categories

4.2

Skill development

4.5

Work-life balance

4.7

Salary

3.0

Job security

4.6

Company culture

2.9

Promotions

4.1

Work satisfaction

Explore 8 Reviews and Ratings
Software QA Engineer

Bangalore / Bengaluru

9-10 Yrs

₹ 18.4-25.95 LPA

Software QA Engineer - Python Automation

Bangalore / Bengaluru

4-7 Yrs

Not Disclosed

Software QA Engineer - Python Automation

Bangalore / Bengaluru

7-9 Yrs

Not Disclosed

Explore more jobs
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