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 Senior Python Developer Interview Questions and Answers

Updated 8 Oct 2024

Cisco Senior Python Developer Interview Experiences

1 interview found

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

DSA, Python, Coding, Optimization, Time and Space Complexity

Interview questions from similar companies

I appeared for an interview before Jan 2016.

Interview Questionnaire 

7 Questions

  • Q1. Give a brief description about your education, past job profile and other questions.
  • Q2. Why did you quit your last organization after just 2.5 years?
  • Ans. 

    Seeking new challenges and growth opportunities.

    • I felt that I had reached a plateau in my role and was no longer being challenged.

    • I was interested in exploring new technologies and wanted to work on more innovative projects.

    • I wanted to work in a more collaborative and dynamic environment.

    • I left on good terms and have maintained positive relationships with my former colleagues.

    • I am excited to bring my skills and experie...

  • Answered by AI
  • Q3. Why do you want to join Centurylink?
  • Ans. 

    I am excited to join Centurylink because of their reputation for innovation and commitment to customer satisfaction.

    • Centurylink has a strong focus on developing cutting-edge technology solutions

    • The company values customer feedback and strives to provide excellent service

    • I am impressed by Centurylink's dedication to diversity and inclusion in the workplace

  • Answered by AI
  • Q4. Why did you relocate to Noida?
  • Ans. 

    Relocated to Noida for better career opportunities and growth.

    • Noida is a hub for IT companies and offers a lot of job opportunities in the software development field.

    • The city has a good work-life balance and a lower cost of living compared to other metropolitan cities.

    • I was also attracted to the diverse culture and the opportunity to work with people from different backgrounds.

    • I did my research and found that Noida has...

  • Answered by AI
  • Q5. Are you ok to work in US shift?
  • Ans. 

    Yes, I am comfortable working in US shift.

    • I have prior experience working in US shift.

    • I am flexible with my work timings.

    • I understand the importance of meeting project deadlines.

    • I am willing to adjust my personal schedule to accommodate work requirements.

  • Answered by AI
  • Q6. Where do you put up?
  • Ans. 

    I currently reside in New York City.

    • I live in an apartment in Manhattan.

    • My neighborhood is known for its diverse food options.

    • I have easy access to public transportation.

    • I enjoy exploring the city in my free time.

  • Answered by AI
  • Q7. Solve 12 Mainframe Puzzles

Interview Preparation Tips

Round: Technical + HR Interview
Experience: I told them all about the previous companies and my past job profile as a Mainframe Developer.
I gave a valid reason for quitting the previous company.
I cited that the reason to relocate to Noida was my wedding.
I was not okay to work in shifts, hence I denied.
I was putting up in Noida itself back then.

Round: Puzzle Interview
Experience: I was given a list of 12 Mainframe puzzles with questions from Cobol, DB2 and JCL.

I could solve 8 of them correctly.
Tips: Prepare puzzles as they give just 1 minute per question and not more.

I appeared for an interview before Apr 2021.

Round 1 - Face to Face 

(7 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on OOPS and OS mainly.

  • Q1. What are Little Endian and Big Endian in the context of computer architecture?
  • Ans. 

    Little Endian and Big Endian refer to the order in which bytes are stored in computer memory.

    • Little Endian stores the least significant byte first, while Big Endian stores the most significant byte first.

    • Little Endian is commonly used in x86 architecture, while Big Endian is used in architectures like SPARC and PowerPC.

    • Endianness can affect data transmission between systems with different byte orders.

  • Answered by AI
  • Q2. Write a program to determine if your system is little-endian or big-endian.
  • Ans. 

    Program to determine system's endianness

    • Check the endianness by storing a multi-byte integer and checking the byte order

    • Use bitwise operations to extract the least significant byte

    • If the least significant byte is at the lowest memory address, it's little-endian

    • If the least significant byte is at the highest memory address, it's big-endian

  • Answered by AI
  • Q3. What is the volatile keyword in programming?
  • Ans. 

    The volatile keyword in programming is used to indicate that a variable's value can be changed unexpectedly.

    • Volatile keyword is used in multithreaded programming to prevent compiler optimizations on variables that can be changed by other threads.

    • It tells the compiler not to cache the variable's value in a register, ensuring that every access is made to the variable's memory location.

    • Commonly used in embedded systems pr...

  • Answered by AI
  • Q4. What is the use of a function pointer in C?
  • Ans. 

    Function pointers in C are used to store the address of functions, allowing for dynamic function calls and callbacks.

    • Function pointers can be used to implement callbacks in event-driven programming.

    • They can be used to switch between different functions at runtime.

    • Function pointers are commonly used in implementing data structures like function pointers in an array of function pointers.

    • Example: void (*funcPtr)(int) = &a

  • Answered by AI
  • Q5. Design a data structure to implement multi-threading.
  • Ans. 

    Design a data structure for multi-threading

    • Use a thread-safe queue to manage tasks for each thread

    • Implement a lock or semaphore to control access to shared resources

    • Consider using condition variables for synchronization

    • Use atomic operations for shared variables to prevent race conditions

  • Answered by AI
  • Q6. What does a kernel do?
  • Ans. 

    The kernel is the core component of an operating system that manages system resources and provides a bridge between software and hardware.

    • Manages system resources such as CPU, memory, and I/O devices

    • Provides a bridge between software applications and hardware components

    • Handles tasks such as process scheduling, memory management, and device drivers

    • Controls communication between hardware and software layers

  • Answered by AI
  • Q7. What is a storage class in programming?
  • Ans. 

    A storage class in programming defines the scope and lifetime of variables.

    • Storage classes include auto, register, static, and extern.

    • Auto variables are created when a function is called and destroyed when the function ends.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and can be accessed

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANVIDIA interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating Systems, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

Skills: Networking, OS, Linux kernel
College Name: NA

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

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
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Job Fair and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 data struture question advancevds i cpp

Round 2 - Technical 

(2 Questions)

  • Q1. 5 dsa array string
  • Ans. 

    Implement a data structure for storing and manipulating an array of strings.

    • Use a dynamic array to store the strings.

    • Implement functions for adding, removing, and accessing strings in the array.

    • Consider memory management and resizing the array as needed.

  • Answered by AI
  • Q2. Data sturucture
Round 3 - HR 

(1 Question)

  • Q1. Resume based question

Interview Preparation Tips

Interview preparation tips for other job seekers - good

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

Cisco Interview FAQs

How many rounds are there in Cisco Senior Python Developer interview?
Cisco interview process usually has 1 rounds. The most common rounds in the Cisco interview process are Coding Test.

Tell us how to improve this page.

Cisco Senior Python Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Nokia Networks Interview Questions
4.2
 • 112 Interviews
Nvidia Interview Questions
3.7
 • 103 Interviews
BT Business Interview Questions
4.0
 • 80 Interviews
Arista Networks Interview Questions
4.2
 • 43 Interviews
TransPerfect Interview Questions
3.5
 • 21 Interviews
View all
Software Engineer
2.6k salaries
unlock blur

₹11 L/yr - ₹40 L/yr

Technical Consulting Engineer
664 salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Senior Software Engineer
653 salaries
unlock blur

₹14 L/yr - ₹50 L/yr

Network Engineer
398 salaries
unlock blur

₹3.9 L/yr - ₹13.5 L/yr

Software Developer
341 salaries
unlock blur

₹16.1 L/yr - ₹43.3 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