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 Programmer Analyst Trainee Interview Questions, Process, and Tips

Updated 5 Mar 2025

Top Cognizant Programmer Analyst Trainee Interview Questions and Answers

  • Q1. Check for syntax error/logical error and correct the error to get the desired output. void maxReplace(int size,int *inputList) { int i,sum=0; for(i=0;i
  • Q2. Alien Dictionary Problem Statement You are provided with a sorted dictionary (by lexical order) in an alien language. Your task is to determine the character order of th ...read more
  • Q3. if you promised a customer for the product on a specific day and your company will not be able to give that product on time then how will you convince that customer ?
View all 196 questions

Cognizant Programmer Analyst Trainee Interview Experiences

399 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. Tell us about your college project
  • Q2. Tell us something about yourself
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Explain DBMS along with CRUD
  • Ans. 

    DBMS is a software system that manages databases, while CRUD stands for Create, Read, Update, Delete operations in databases.

    • DBMS (Database Management System) is a software system that allows users to interact with databases.

    • CRUD stands for Create, Read, Update, Delete - the four basic functions of persistent storage.

    • Examples: Creating a new record in a database (Create), Reading data from a database (Read), Updating e...

  • Answered by AI
  • Q2. Explain oops concepts with code snippet
  • Ans. 

    OOPs concepts are fundamental principles in object-oriented programming that help in organizing and designing code.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (class). Example: class Car { private String color; public void drive() { ... } }

    • Inheritance: allows a class to inherit properties and behavior from another class. Example: class SUV extends Car { ... }

    • Polymorphism: abilit...

  • Answered by AI

Skills evaluated in this interview

Programmer Analyst Trainee Interview Questions Asked at Other Companies

asked in Cognizant
Q1. Check for syntax error/logical error and correct the error to get ... read more
asked in Cognizant
Q2. Alien Dictionary Problem Statement You are provided with a sorted ... read more
asked in Cognizant
Q3. if you promised a customer for the product on a specific day and ... read more
asked in Cognizant
Q4. What are OOP characteristics? Difference between abstraction and ... read more
asked in Cognizant
Q5. Why is java platform independent?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Sum of two number
  • Ans. 

    The sum of two numbers is calculated by adding them together.

    • To find the sum of two numbers, simply add them together.

    • For example, the sum of 5 and 3 is 8 (5 + 3 = 8).

  • Answered by AI
  • Q2. Explain hello world in details why public static is used why it it important
  • Ans. 

    public static is used in Java to define a method that can be called without creating an instance of the class.

    • public static is used in Java to define a method that belongs to the class itself, rather than to any specific instance of the class.

    • public static methods can be called directly using the class name, without needing to create an object of the class.

    • In the 'Hello World' program, public static is used to define t...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Mostly Java and C were the languages used.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduction/ Introducing myself
  • Q2. Why choose the particular company

Cognizant interview questions for designations

 Trainee Programmer

 (40)

 Programmer Analyst

 (542)

 Junior Programmer Analyst

 (1)

 Senior Programmer Analyst

 (1)

 Programmer

 (28)

 SAS Programmer Analyst

 (1)

 Programmer Analyst 1

 (5)

 Sse Programmer Analyst

 (1)

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

I applied via Company Website and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Cover String Manipulation and Array based questions.

Round 2 - Technical 

(1 Question)

  • Q1. Questions asked on FrontEnd, College Project and Situational Based questions
Round 3 - HR 

(1 Question)

  • Q1. Questions on how to handle team in case of issues.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare core concepts. Choose one OOPs programming language. Prepare questions from any one online programming practice platform like Hackerearth, etc.

Get interview-ready with Top Cognizant Interview Questions

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Just easy questions which can be found on internet.

Round 2 - HR 

(1 Question)

  • Q1. Strengths, weaknesses, few apti questions
Round 3 - One-on-one 

(3 Questions)

  • Q1. Skills, basic fundamentals, core branch questions
  • Q2. Maths question and some equation given to solve
  • Q3. Basic palindrome question given to code

Interview Preparation Tips

Interview preparation tips for other job seekers - study well for cs fundamentals
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Work time speed and time Data interpretation English

Round 2 - Technical 

(5 Questions)

  • Q1. Basic Java questions b
  • Q2. String class related questions
  • Q3. Concat string program
  • Q4. Program to Array sort
  • Ans. 

    Program to sort an array of strings

    • Use a sorting algorithm like bubble sort, selection sort, or merge sort

    • Compare strings using a comparison function

    • Implement the sorting algorithm in a loop until the array is sorted

  • Answered by AI
  • Q5. Write Fibonacci program
  • Ans. 

    A Fibonacci program generates a series of numbers where each number is the sum of the two preceding ones.

    • Use a loop or recursion to generate the Fibonacci series

    • Start with two initial numbers, 0 and 1

    • Add the previous two numbers to get the next number in the series

    • Repeat until the desired number of terms is reached

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

I got many questions from the internet previous, from where I was learning, the pattern is almost the same.

Round 2 - Coding Test 

Basic Array, Linkedlist, HashSet, Map.

Round 3 - Technical 

(2 Questions)

  • Q1. Basic Intro, Medium to hard GFG questions, 1 Medium Leetcode question.
  • Q2. Graph only was the 1 question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Gender question
  • Q2. About project
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

I applied via Campus Placement and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Communication 

(2 Questions)

  • Q1. Grammer, Appropriate words
  • Q2. Speaking and listening
Round 2 - Aptitude Test 

Quants,Logical reasoning

Round 3 - Coding Test 

Java code, SQL query

Round 4 - HR 

(2 Questions)

  • Q1. Technical questions on java basic
  • Q2. Solve some Coding

Cognizant Interview FAQs

How many rounds are there in Cognizant Programmer Analyst Trainee interview?
Cognizant interview process usually has 2-3 rounds. The most common rounds in the Cognizant interview process are Aptitude Test, Technical and HR.
How to prepare for Cognizant Programmer Analyst Trainee 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, Web Services and Web Technologies.
What are the top questions asked in Cognizant Programmer Analyst Trainee interview?

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

  1. if you promised a customer for the product on a specific day and your company w...read more
  2. What are OOP characteristics? Difference between abstraction and encapsulation?...read more
  3. Why is java platform independe...read more
How long is the Cognizant Programmer Analyst Trainee interview process?

The duration of Cognizant Programmer Analyst Trainee interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Cognizant Programmer Analyst Trainee Interview Process

based on 236 interviews

6 Interview rounds

  • Aptitude Test Round - 1
  • Aptitude Test Round - 2
  • Technical Round
  • HR Round - 1
  • HR Round - 2
  • Personal Interview1 Round
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 Programmer Analyst Trainee Salary
based on 8.4k salaries
₹0.9 L/yr - ₹4.5 L/yr
At par with the average Programmer Analyst Trainee Salary in India
View more details

Cognizant Programmer Analyst Trainee Reviews and Ratings

based on 860 reviews

3.4/5

Rating in categories

3.5

Skill development

3.4

Work-life balance

3.2

Salary

3.2

Job security

3.4

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 860 Reviews and Ratings
Associate
71.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Programmer Analyst
55.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
48.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Processing Executive
28.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
17.5k salaries
unlock blur

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