Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Cognizant Team. If you also belong to the team, you can get access from here

Cognizant Verified Tick

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

Cognizant Python Developer Interview Questions, Process, and Tips for Experienced

Updated 7 Aug 2024

Top Cognizant Python Developer Interview Questions and Answers for Experienced

  • Q1. Tell me the logic of program to reverse a given string word by word without using any built in function.
  • Q2. What is the difference between variable and object?
  • Q3. Have you done anything on python related developments.
View all 10 questions

Cognizant Python Developer Interview Experiences for Experienced

5 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Purely basic pythons
  • Q2. Coding test writing

Interview Preparation Tips

Interview preparation tips for other job seekers - Never go cognizant because they put in bench

I applied via Recruitment Consulltant and was interviewed in May 2022. There were 2 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 - Technical 

(4 Questions)

  • Q1. Difference between tuple and list.
  • Ans. 

    Tuple is immutable and ordered while list is mutable and ordered.

    • Tuple uses () while list uses []

    • Tuple is faster than list for accessing elements

    • Tuple can be used as keys in dictionaries while list cannot

    • Tuple can be used in string formatting while list cannot

  • Answered by AI
  • Q2. What is decorator?why we are using decorator? Write a program for decorator?
  • Ans. 

    A decorator is a design pattern in Python that allows modifying the behavior of a function or class without changing its source code.

    • Decorators are functions that take another function as an argument and return a new function.

    • They are used to add functionality to an existing function or class.

    • They can be used to modify the behavior of a function, such as adding logging or timing functionality.

    • They can also be used to e...

  • Answered by AI
  • Q3. Give one recursion problem .
  • Ans. 

    One recursion problem is to find the factorial of a number.

    • The base case is when the number is 0 or 1.

    • The recursive case is to multiply the number with the factorial of (number-1).

    • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = ... = 5 * 4 * 3 * 2 * 1 = 120.

  • Answered by AI
  • Q4. Find second highest number from list without using inbuilt functions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident don't hesitate tell truth. Prepare for basic data structures and some algorithms as well

Skills evaluated in this interview

Python Developer Interview Questions Asked at Other Companies for Experienced

asked in Cognizant
Q1. Tell me the logic of program to reverse a given string word by wo ... read more
asked in Cognizant
Q2. What is the difference between variable and object?
asked in TCS
Q3. 1. Difference between tuple and a list? 2. What are decorators? 3 ... read more
asked in Accenture
Q4. 2.Write a program to print a string in reverse without using buil ... read more
asked in Genpact
Q5. How to check a key is exists in dictionary or not with out throug ... read more

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Python fundamental need to be strong
Round 3 - HR 

(1 Question)

  • Q1. General - Related to salary, notice period, etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple, just make sure your basics are clear. Explain with example

Python Developer Interview Questions & Answers

user image Ajay Kumar Shaw

posted on 1 Sep 2021

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. Give your introduction.
  • Q2. What was you work/role in current company?
  • Q3. Have you done anything on python related developments.
  • Ans. 

    Yes, I have worked on various python projects including web development, data analysis and automation.

    • Developed a web application using Django framework

    • Automated data extraction and analysis using pandas library

    • Created a chatbot using Python and Dialogflow API

    • Implemented machine learning algorithms for predictive analysis

    • Integrated Python scripts with other technologies like AWS and Docker

  • Answered by AI
  • Q4. What is the difference between variable and object?
  • Q5. Have you heard about init method?
  • Ans. 

    Yes, init method is a special method in Python classes used to initialize objects.

    • The init method is called automatically when an object is created from a class.

    • It is used to set initial values for object attributes.

    • The init method always takes the 'self' parameter as the first argument.

    • Example: def __init__(self, name, age): self.name = name; self.age = age

    • The init method can also be used to perform any other setup or

  • Answered by AI
  • Q6. What is inheritance and what are its types?
  • Ans. 

    Inheritance is a way to create a new class by inheriting properties and methods from an existing class.

    • It allows code reusability and saves time.

    • Types of inheritance are single, multiple, multilevel, and hierarchical.

    • Single inheritance involves inheriting properties and methods from a single parent class.

    • Multiple inheritance involves inheriting properties and methods from multiple parent classes.

    • Multilevel inheritance ...

  • Answered by AI
  • Q7. Have you heard about pickling and non pickling?
  • Ans. 

    Pickling is a way to serialize Python objects, while non-pickling refers to objects that cannot be pickled.

    • Pickling is used to convert Python objects into a byte stream that can be stored or transmitted.

    • Non-pickling objects are those that cannot be serialized using the pickle module.

    • Examples of non-pickling objects include file objects, network sockets, and database connections.

    • To make an object picklable, it must be a...

  • Answered by AI
  • Q8. What models you made in your ML projects(in my intro i told that I was working on datasets and making ML models)?
  • Ans. 

    I have made various ML models including regression, classification, and clustering models.

    • I have made regression models such as linear regression and polynomial regression to predict numerical values.

    • I have made classification models such as logistic regression, decision trees, and random forests to classify data into different categories.

    • I have made clustering models such as K-means clustering to group similar data po...

  • Answered by AI
  • Q9. Why you want to relocate to Bangalore?
  • Q10. Tell me the logic of program to reverse a given string word by word without using any built in function.
  • Ans. 

    The logic of the program is to reverse a given string word by word without using any built-in function.

    • Split the string into an array of words using whitespace as the delimiter.

    • Iterate through the array of words in reverse order.

    • Append each word to a new string, separated by a space.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For virtual interviews, interviewer may ask you to share screen and will give any code and ask for output, make give any coding problem to be done in notepad, may also stick to theoretical questions only as in my case, so be well prepared with basic terminologies, syntax, concepts etc

Skills evaluated in this interview

Cognizant interview questions for designations

 Jr Python Developer

 (1)

 Python Software Developer

 (4)

 Python Developer Intern

 (1)

 Developer

 (6)

 Software Developer

 (127)

 Java Developer

 (25)

 Salesforce Developer

 (18)

 RPA Developer

 (10)

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 

(1 Question)

  • Q1. Yes also than python and machine learning based

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes, I am interested , and we needed

Get interview-ready with Top Cognizant Interview Questions

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. In 1st round they asked aptitude questions And 2nd round was an technical hr interview in this they asked oops concepts and basic C programming

Interview Questionnaire 

1 Question

  • Q1. Spring IOC , bean scopes, Tomcat server questions , SpringBoot questions Dependency questions, Maven questions

Interview Questionnaire 

1 Question

  • Q1. Questions Based on basic algorithm and Oops concept

Interview Questionnaire 

1 Question

  • Q1. In C# --> Abstraction, Interface , Abstract Method, Abstract Class, Polymorphisms, Encapsulation ,Inheritance, Serialization,
  • Ans. 

    C# concepts including abstraction, interface, abstract method, abstract class, polymorphism, encapsulation, inheritance, and serialization.

    • Abstraction: hiding implementation details

    • Interface: defining a contract for behavior

    • Abstract method: method without implementation

    • Abstract class: class with one or more abstract methods

    • Polymorphism: ability of objects to take on multiple forms

    • Encapsulation: bundling data and behavi...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Yourself
  • Q2. How do you feel about working nights and weekends?
  • Q3. I will try to complete my tasks within weekdays effectively and efficiently to avoid weekand night work.
  • Q4. What is the difference b/w confidence and over confidence?

Interview Preparation Tips

Interview preparation tips for other job seekers - Tech mahendra company is a very efficent work hard and if you have a growth of employees skills and sincearly work hard

Cognizant Interview FAQs

How many rounds are there in Cognizant Python Developer interview for experienced candidates?
Cognizant interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Cognizant interview process for experienced candidates are Resume Shortlist, Technical and Aptitude Test.
How to prepare for Cognizant Python Developer interview for experienced candidates?
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 Cognizant. The most common topics and skills that interviewers at Cognizant expect are Python, Django, Python Development, Web Development and Program Management.
What are the top questions asked in Cognizant Python Developer interview for experienced candidates?

Some of the top questions asked at the Cognizant Python Developer interview for experienced candidates -

  1. Tell me the logic of program to reverse a given string word by word without usi...read more
  2. What is the difference between variable and obje...read more
  3. Have you done anything on python related developmen...read more

Tell us how to improve this page.

Cognizant Python Developer Interview Process for Experienced

based on 1 interview

2 Interview rounds

  • Resume Shortlist Round
  • Technical Round
View more
Cognizant Python Developer Salary
based on 217 salaries
₹2.7 L/yr - ₹12.5 L/yr
30% more than the average Python Developer Salary in India
View more details

Cognizant Python Developer Reviews and Ratings

based on 13 reviews

3.2/5

Rating in categories

3.0

Skill development

3.9

Work-life balance

3.5

Salary

2.6

Job security

3.7

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 13 Reviews and Ratings
Associate
72.4k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

Programmer Analyst
55.6k salaries
unlock blur

₹2.4 L/yr - ₹9.3 L/yr

Senior Associate
50.3k salaries
unlock blur

₹9 L/yr - ₹28.6 L/yr

Senior Processing Executive
29.1k salaries
unlock blur

₹1.8 L/yr - ₹9.2 L/yr

Technical Lead
17.7k salaries
unlock blur

₹6 L/yr - ₹25 L/yr

Explore more salaries
Compare Cognizant with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Accenture

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