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

Clear (1)

Cognizant Trainee Programmer Interview Questions, Process, and Tips

Updated 20 Nov 2024

Top Cognizant Trainee Programmer Interview Questions and Answers

  • Q1. Networking Questions like What is IP ADDRESS WHAT IS MAC ADDRESS WHAT IS BSOD WHAT IS ACTIVE DIRECTORY WHAT IS NODE WHAT IS LAN WAN MAN WHAT IS SQL WHAT ARE SUBGROUPS OF ...read more
  • Q2. what is polymorphism in Object-Oriented Programming?
  • Q3. Rate yourself in 5 different programming languages on a 1-10 scale, 10 being the best.
View all 24 questions

Cognizant Trainee Programmer Interview Experiences

40 interviews found

Interview Questionnaire 

4 Questions

  • Q1. First question was just tell me about yourself
  • Q2. Then in which domain are you interested then I choose python then he asked that what is python language
  • Q3. What is database management system ?
  • Ans. 

    A database management system is a software that manages and organizes data in a database.

    • DBMS is used to create, modify, and delete data in a database.

    • It provides a way to store and retrieve data efficiently.

    • Examples of DBMS include MySQL, Oracle, and Microsoft SQL Server.

  • Answered by AI
  • Q4. Then He gives me the code to write in python language

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not panic while giving your interview. Be confident and do not look at hear and there just take an eye contact with the interviewer. Best of luck

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Interview Preparation Tips

Topics to prepare for Cognizant Trainee Programmer interview:
  • Java
  • C
  • Database
Interview preparation tips for other job seekers - Just be confident and tell honestly what technology do you know and confident about. Try to give crisp, to-the-point answer.

Trainee Programmer Interview Questions Asked at Other Companies

asked in Cognizant
Q1. Networking Questions like What is IP ADDRESS WHAT IS MAC ADDRESS ... read more
asked in Cognizant
Q2. what is polymorphism in Object-Oriented Programming?
Q3. What rating will you give about your programming knowledge out of ... read more
asked in Chain-Sys
Q4. What is PLSQL? what are the mail components in PLSQL explain thei ... read more
asked in Chain-Sys
Q5. What are the types of clauses used in SQL and their work

I applied via Company Website and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Q2. Preferable Programing Languages.
  • Ans. 

    Preferable programming languages depend on the project requirements and team expertise.

    • Consider the project requirements and choose a language that best fits them.

    • Consider the team's expertise and choose a language that they are comfortable with.

    • Popular languages include Java, Python, C++, JavaScript, and Ruby.

    • For web development, JavaScript and its frameworks like React and Angular are popular.

    • For data science, Python...

  • Answered by AI
  • Q3. Questions about Programing Languages and Database

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

I applied via Front lines media in instagram and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1.  Aptitude questions were asked in the interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - One should be confident and have a peaceful and presence of mind . Don't feel tense and answer to the interviewer with boldness . Go through the job description thoroughly and recheck your resume to ensure that you are a best fit person for the position .

Cognizant interview questions for designations

 Programmer Analyst Trainee

 (401)

 Programmer

 (28)

 Programmer Analyst

 (542)

 IT Programmer

 (2)

 Software Programmer

 (1)

 Associate Software Programmer

 (4)

 Senior Programmer Analyst

 (1)

 Junior Programmer Analyst

 (1)

I applied via Front lines media and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Aptitude questions and some questions about computer languages were asked in the interview .

Interview Preparation Tips

Interview preparation tips for other job seekers - One should be confident and have peaceful and presence of mind .

Get interview-ready with Top Cognizant Interview Questions

I applied via Campus Placement and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Asked to do a puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answer

I applied via Company Website and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just read basic things

I applied via Company Website and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Tell me something about yourself?
  • Q2. Rate yourself in 5 different programming languages on a 1-10 scale, 10 being the best.
  • Ans. 

    I rate myself differently in different languages based on my experience and proficiency.

    • Java - 8: I have worked on multiple projects using Java and have a good understanding of its concepts.

    • Python - 7: I have used Python for scripting and automation tasks and have a decent understanding of its libraries.

    • C++ - 6: I have basic knowledge of C++ and have implemented some algorithms using it.

    • JavaScript - 8: I have worked on...

  • Answered by AI
  • Q3. What are projects you have worked on or currently working on?
  • Ans. 

    I have worked on a project for a retail company and currently working on a project for a finance company.

    • Developed a web application for a retail company to manage their inventory and sales.

    • Working on a mobile application for a finance company to provide financial advice to users.

    • Used Java and Spring framework for the retail project and React Native for the finance project.

    • Collaborated with a team of developers and des

  • Answered by AI
  • Q4. What is encapsulation?
  • Ans. 

    Encapsulation is the process of hiding implementation details and restricting access to an object's properties and methods.

    • Encapsulation helps in achieving data abstraction and information hiding.

    • It prevents unauthorized access to an object's internal state.

    • It allows for better control over the object's behavior.

    • Example: A bank account class with private variables for balance and account number.

    • Example: A car class wit...

  • Answered by AI
  • Q5. What is polymorphism in Object-Oriented Programming?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables methods to be defined in the superclass and overridden in the subclasses.

    • Polymorphism helps in achieving code reusability and flexibility in object-oriented programming.

    • Example: A superclass 'Animal' with subclasses 'Dog' and 'Cat'. Both 'Dog' and 'Ca

  • Answered by AI
  • Q6. Write a program using any language of your choice (It was a palindrome-based program.)
  • Ans. 

    A program to check if a given string is a palindrome or not.

    • Take input string from user

    • Reverse the string

    • Compare the reversed string with the original string

    • If both are same, then the string is a palindrome

    • Else, the string is not a palindrome

  • Answered by AI
  • Q7. What is API?
  • Ans. 

    API stands for Application Programming Interface. It is a set of protocols, routines, and tools for building software applications.

    • API allows different software applications to communicate with each other

    • It defines how software components should interact

    • APIs can be public or private

    • Examples of APIs include Google Maps API, Twitter API, and Facebook API

  • Answered by AI
  • Q8. Do you have any question for us?

Interview Preparation Tips

Interview preparation tips for other job seekers - The whole interview process was smooth. It was a placement drive after the AMCAT.

My advice would be to carry a smile while you are entering the room. They are not expecting anything extraordinary, this doesn't mean that your profile is boring you have to have something to speak about. You have to go through the basics and whatever your area of interest is. Oops, concepts and basic programming is expected. But whatever you did in your UG, prepare for that.

Results,
Offered

Skills evaluated in this interview

I applied via Job Portal and was interviewed before Aug 2021. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep ready with your knowledge, C, C++, Java, Projects

I applied via Campus Placement and was interviewed before Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. C c++
  • Q2. Java

Interview Preparation Tips

Round: Test
Experience: Aptitude

General Tips: Communication skills is a must.
Skills: Communication, Body Language, Presentation Skills, Decision Making Skills
Duration: 1-4 weeks
College Name: Jbas
Contribute & help others!
anonymous
You can choose to be anonymous

Cognizant Interview FAQs

How many rounds are there in Cognizant Trainee Programmer interview?
Cognizant interview process usually has 3-4 rounds. The most common rounds in the Cognizant interview process are Aptitude Test, HR and Technical.
How to prepare for Cognizant Trainee Programmer 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 Cognizant. The most common topics and skills that interviewers at Cognizant expect are JIRA, Requirement Analysis, Quality Center, Delivery Leadership and Monthly Reports.
What are the top questions asked in Cognizant Trainee Programmer interview?

Some of the top questions asked at the Cognizant Trainee Programmer interview -

  1. Networking Questions like What is IP ADDRESS WHAT IS MAC ADDRESS WHAT IS BSOD...read more
  2. what is polymorphism in Object-Oriented Programmi...read more
  3. Rate yourself in 5 different programming languages on a 1-10 scale, 10 being th...read more

Recently Viewed

JOBS

Tech Mahindra

No Jobs

JOBS

Happiest Minds Technologies

No Jobs

INTERVIEWS

Black & White Business Solutions

No Interviews

INTERVIEWS

Divgi Torqtransfer Systems

No Interviews

REVIEWS

Tech Mahindra

No Reviews

INTERVIEWS

Cognizant

No Interviews

LIST OF COMPANIES

Discover companies

Find best workplace

LIST OF COMPANIES

Discover companies

Find best workplace

INTERVIEWS

Vedantu

No Interviews

Tell us how to improve this page.

Cognizant Trainee Programmer Interview Process

based on 16 interviews

4 Interview rounds

  • Resume Shortlist Round
  • Aptitude Test Round
  • HR Round - 1
  • HR Round - 2
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all
Cognizant Trainee Programmer Salary
based on 977 salaries
₹1.6 L/yr - ₹4.8 L/yr
10% less than the average Trainee Programmer Salary in India
View more details

Cognizant Trainee Programmer Reviews and Ratings

based on 99 reviews

3.7/5

Rating in categories

3.6

Skill development

3.5

Work-life balance

3.3

Salary

3.6

Job security

3.8

Company culture

3.1

Promotions

3.2

Work satisfaction

Explore 99 Reviews and Ratings
Associate
72.1k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

Programmer Analyst
55.5k salaries
unlock blur

₹2.4 L/yr - ₹9.5 L/yr

Senior Associate
48.9k salaries
unlock blur

₹9 L/yr - ₹27.8 L/yr

Senior Processing Executive
28.9k salaries
unlock blur

₹1.8 L/yr - ₹9 L/yr

Technical Lead
17.5k salaries
unlock blur

₹5.9 L/yr - ₹21 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