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 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

Trainee Programmer Interview Questions & Answers

user image Rupesh Ahire

posted on 20 Nov 2024

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

Online Apti conducted

Round 2 - One-on-one 

(2 Questions)

  • Q1. SQL questions were asked
  • Q2. Unix questions were asked
Round 3 - HR 

(2 Questions)

  • Q1. Salary mentioned by HR
  • Q2. Job Location were discussed
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Focuse on logical aptitiude

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain the concepts of oops
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPs focuses on creating objects that contain data and methods to manipulate that data.

    • Encapsulation is the concept of bundling data and methods that operate on the data within a single unit, called an object.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Polymorphism allows object...

  • Answered by AI
  • Q2. Write code for string reverse
  • Ans. 

    Code to reverse a string using array of characters

    • Use two pointers, one at the beginning and one at the end of the string

    • Swap characters at the two pointers and move them towards the center until they meet

    • Example: Input 'hello' -> Output 'olleh'

  • Answered by AI

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

Trainee Programmer Interview Questions & Answers

user image HEMA SUDHA MOKARA

posted on 20 Jun 2024

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

Basic questions of aptitude and english.

Round 2 - Technical 

(1 Question)

  • Q1. What is oops? Data structures? Searching and sorting techniques, DBMS basics. Basic programming questions.
Round 3 - HR 

(5 Questions)

  • Q1. Self introduction
  • Q2. About Cognizant
  • Q3. Based on resume questions.
  • Q4. Memorable/unforgettable moment.
  • Q5. About Hobbies/ interests.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident on what you are saying, be honest.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy standard aptitude, anyone can crack based on practice

Round 2 - One-on-one 

(2 Questions)

  • Q1. Details about OOPs concept
  • Q2. What is algorithm
  • Ans. 

    An algorithm is a step-by-step procedure for solving a problem or accomplishing a task.

    • An algorithm is a set of instructions that are followed to solve a problem.

    • It is a sequence of well-defined steps that can be executed in a specific order.

    • Algorithms can be represented using flowcharts, pseudocode, or programming languages.

    • Examples of algorithms include sorting algorithms like bubble sort and searching algorithms lik

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepared with the basics, keep clear communication and attitude towards everything

Skills evaluated in this interview

Cognizant interview questions for designations

 Programmer Analyst Trainee

 (402)

 Programmer

 (28)

 Programmer Analyst

 (539)

 IT Programmer

 (2)

 Software Programmer

 (1)

 Mainframe Programmer

 (1)

 Associate Software Programmer

 (4)

 Senior Programmer Analyst

 (1)

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via superset and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Online proctored MCQ containing 60 ques.

Round 2 - Technical 

(9 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Completed internships at tech companies

    • Proficient in programming languages like Java, Python, and C++

  • Answered by AI
  • Q2. Tell me about functions in c
  • Ans. 

    Functions in C are blocks of code that perform a specific task and can be called multiple times within a program.

    • Functions in C are defined using a return type, function name, parameters, and a body enclosed in curly braces.

    • Functions can be called multiple times within a program to perform the same task without rewriting the code.

    • Functions can return a value using the 'return' statement.

    • Functions can also be void, mean...

  • Answered by AI
  • Q3. Write a C program to find maximum and minimum of given 3 numbers
  • Ans. 

    Program to find maximum and minimum of 3 numbers in C

    • Use if-else statements to compare the numbers

    • Initialize variables to store maximum and minimum values

    • Consider using arrays to store the numbers for easier comparison

  • Answered by AI
  • Q4. Write a program to print a matrix of 3 by 3.
  • Ans. 

    Program to print a 3x3 matrix using nested loops.

    • Use nested loops to iterate through rows and columns of the matrix.

    • Initialize a 2D array with 3 rows and 3 columns to store the matrix elements.

    • Print the elements of the matrix using nested loops.

  • Answered by AI
  • Q5. What is a primary key
  • Ans. 

    A primary key is a unique identifier for each record in a database table.

    • Uniquely identifies each record in a table

    • Cannot contain null values

    • Can consist of one or multiple columns

    • Used to establish relationships between tables

  • Answered by AI
  • Q6. Difference between while loop and for loop
  • Ans. 

    While loop is used when the number of iterations is not known beforehand, while for loop is used when the number of iterations is known.

    • While loop checks the condition before executing the block of code, while for loop initializes, checks condition, and increments/decrements in one line.

    • For loop is used when the number of iterations is known, while loop is used when the number of iterations is not known.

    • Example: while

  • Answered by AI
  • Q7. Difference between break and continue.
  • Ans. 

    Break is used to exit a loop, while continue is used to skip the current iteration and move to the next one.

    • Break is used to terminate the loop and exit it completely.

    • Continue is used to skip the current iteration and move to the next one.

    • Example: for(int i=0; i<5; i++) { if(i==3) { break; } System.out.println(i); } // Output: 0 1 2

    • Example: for(int i=0; i<5; i++) { if(i==3) { continue; } System.out.println(i); } // Out

  • Answered by AI
  • Q8. What is a string in C.
  • Ans. 

    A string in C is a sequence of characters stored as an array of characters terminated by a null character.

    • Strings in C are actually arrays of characters.

    • Strings are terminated by a null character '\0'.

    • Strings can be initialized using double quotes, e.g. char str[] = "Hello".

  • Answered by AI
  • Q9. Why C is called middle level language?
  • Ans. 

    C is called middle level language because it combines features of both high-level and low-level languages.

    • C allows low-level manipulation like memory management and bit manipulation.

    • C also supports high-level features like functions, data structures, and dynamic memory allocation.

    • C is closer to the hardware compared to high-level languages like Java or Python, but not as close as low-level languages like assembly.

    • C pro...

  • Answered by AI
Round 3 - HR 

(6 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science, passionate about coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Experience with programming languages like Java, Python, and C++

    • Completed internships in software development at XYZ Company

    • Strong analytical and problem-solving skills

  • Answered by AI
  • Q2. Tell me about your college project
  • Ans. 

    Developed a web-based inventory management system for a local grocery store

    • Used HTML, CSS, JavaScript for front-end development

    • Implemented PHP and MySQL for back-end functionality

    • Included features like real-time stock updates, sales tracking, and user authentication

  • Answered by AI
  • Q3. Tell me the tech stack used
  • Ans. 

    Our tech stack includes Java, Spring Boot, React, and MySQL.

    • Java

    • Spring Boot

    • React

    • MySQL

  • Answered by AI
  • Q4. What was your roll in the project
  • Ans. 

    I was responsible for developing the front-end user interface of the project.

    • Designed and implemented user-friendly interfaces using HTML, CSS, and JavaScript

    • Collaborated with the design team to ensure a seamless user experience

    • Tested and debugged code to ensure functionality and performance

    • Integrated front-end components with back-end systems for data retrieval and processing

  • Answered by AI
  • Q5. Are you ready to work in 24*7 in flexible shifts
  • Ans. 

    Yes, I am ready to work in 24*7 flexible shifts as a Trainee Programmer.

    • I am willing to work in flexible shifts to accommodate project needs

    • I understand the importance of being available 24*7 in case of emergencies or critical issues

    • I am committed to learning and growing in my role as a Trainee Programmer

  • Answered by AI
  • Q6. Why do you want to join cognizant
  • Ans. 

    I want to join Cognizant because of its reputation for providing excellent training and career growth opportunities in the IT industry.

    • Cognizant is known for its focus on employee development and training programs

    • I am impressed by Cognizant's reputation for innovation and cutting-edge technology solutions

    • I believe Cognizant offers a great platform for me to enhance my skills and grow in my career

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Cognizant Interview Questions

Trainee Programmer Interview Questions & Answers

user image SUJEEV PAUL PAMULA

posted on 28 Jul 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

Tough and hard to answer the questions

Round 3 - Coding Test 

Tough hard to solve the programs

Round 4 - HR 

(4 Questions)

  • Q1. Comfortable with night shifts
  • Q2. Yes im ok with rotational shift
  • Q3. Java is fully oops concept?
  • Ans. 

    Java is a fully object-oriented programming language.

    • Java supports all four pillars of OOP: encapsulation, inheritance, polymorphism, and abstraction.

    • Classes and objects are fundamental concepts in Java.

    • Java allows for the creation of user-defined classes and objects.

    • Inheritance enables code reusability in Java.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction allows for hiding im...

  • Answered by AI
  • Q4. Decision-making related question

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Naukri.com and was interviewed in Dec 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Aptitude questions and logical reasoning questions.

Round 3 - Technical 

(1 Question)

  • Q1. Self, About what we upload the skills in resume
Round 4 - HR 

(1 Question)

  • Q1. Document verification and self

Interview Preparation Tips

Interview preparation tips for other job seekers - Give good performance and don't fear about anything.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

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 - Aptitude Test 

Basic math and english

Round 3 - One-on-one 

(1 Question)

  • Q1. Asked me about a programming language

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident

Trainee Programmer Interview Questions & Answers

user image Hemanth Kumar K

posted on 8 Dec 2022

I applied via Naukri.com and was interviewed in Jun 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

1) Quantitative Aptitude
2) Analytical and logical reasoning
3) verbal

Round 3 - Technical 

(1 Question)

  • Q1. Based on what you mentioned in your resume they will ask questions on that
Round 4 - HR 

(1 Question)

  • Q1. In HR round they will ask self introduction, and some technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very sure with your answers , and be confident
Don't be nervous at the time you don't know the question

Trainee Programmer Interview Questions & Answers

user image Shaik Reshma

posted on 20 May 2022

Round 1 - Assignment 
Round 2 - Technical 

(2 Questions)

  • Q1. They ask me some technical questions like what is difference between c and Java, what is meant by C, what is meant by tokens.
  • Ans. 

    Technical questions about C and Java programming languages.

    • C is a procedural language while Java is an object-oriented language.

    • C is compiled while Java is interpreted.

    • Tokens are the smallest individual units of a program, such as keywords, operators, and identifiers.

    • C is used for system programming, embedded systems, and low-level programming while Java is used for web development, mobile development, and enterprise a

  • Answered by AI
  • Q2. And later he ask me to write a polyndrome or factors program
Round 3 - HR 

(2 Questions)

  • Q1. Hr round is just document verification
  • Q2. They didn't ask any technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview is very simple and the interviewer is so softly connected to me.

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, Technical and HR.
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

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.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k 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
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Cognizant Trainee Programmer Salary
based on 953 salaries
₹1.6 L/yr - ₹5 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.2k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

Programmer Analyst
55.5k salaries
unlock blur

₹2.4 L/yr - ₹9.7 L/yr

Senior Associate
48.6k salaries
unlock blur

₹9 L/yr - ₹27.3 L/yr

Senior Processing Executive
28.9k salaries
unlock blur

₹1.8 L/yr - ₹9 L/yr

Technical Lead
17.6k salaries
unlock blur

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