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

Updated 3 Mar 2025

Top Cognizant Interview Questions and Answers

  • Q1. What is stack? How do you convert a queue to stack?
  • Q2. What is the difference between structure and class?
  • Q3. Two defined table and fetching data is done one table has 20 records of 20 students another table has 10 student information if i want to pick the common record how to pi ...read more
View all 62 questions

Cognizant Interview Experiences

114 interviews found

Interview Questionnaire 

4 Questions

  • Q1. Tell me about your self
  • Ans. 

    I am a Programmer Analyst with expertise in developing and maintaining software applications.

    • Proficient in programming languages such as Java, C++, and Python

    • Experience in analyzing user requirements and designing software solutions

    • Skilled in troubleshooting and debugging software issues

    • Strong knowledge of database management systems like MySQL and Oracle

    • Familiarity with software development methodologies like Agile an...

  • Answered by AI
  • Q2. Tell me about your family
  • Ans. 

    I come from a close-knit family with diverse backgrounds and interests.

    • My parents are both educators, and they instilled in me a love for learning and problem-solving.

    • I have two siblings, an older brother who works in finance and a younger sister who is studying medicine.

    • We often gather for family dinners and enjoy discussing various topics, from technology to current events.

    • My family has been a great support system th...

  • Answered by AI
  • Q3. How flexibility can help, what are its advantages and disadvantages
  • Ans. 

    Flexibility can bring advantages like adaptability and creativity, but can also lead to indecisiveness and lack of focus.

    • Flexibility allows for adaptability to changing situations and creativity in problem-solving.

    • It can also lead to indecisiveness and lack of focus if not balanced with structure and clear goals.

    • Advantages include increased resilience, better teamwork, and improved communication.

    • Disadvantages include p...

  • Answered by AI
  • Q4. Why is your english score bad
  • Ans. 

    My English score is bad due to lack of practice and exposure.

    • Lack of practice and exposure to English language

    • Difficulty in understanding complex grammar rules

    • Limited vocabulary and poor pronunciation

    • Lack of confidence in speaking and writing English

    • Possible language barrier if English is not my first language

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Basic aptitude questions with some application based questions which do not require any calculation. Second section tests the verbal ability of the student with few grammar based questions and few word analogy related.
Tips: Good practice of basic aptitude questions covering most of the topics and critical reasoning questions without using pen and paper will help a lot.If you are a voracious reader you need not worry for verbal section but if you hardly read then start reading from now and develop a habit.
Duration: 40 minutes
Total Questions: 40

Round: Interview
Experience: Be honest and answer the questions confidently. For all the questions I supported myself with good answers and some examples. For the question regarding my verbal ability in which I scored less marks I answered that I recognise that weakness and started reading newspapers and word power book.
Tips: Only confidence is the mantra for hr interview. Support your answer and stick to your answer. If possible give examples and be expressive.

Skill Tips: Showcase your strengths and make the interviewer ask what you want him to ask take him in your direction.
Skills: Communication skills, Body language, Verbal ability, Critical thinking
College Name: IIT Madras

Interview Questionnaire 

4 Questions

  • Q1. Define OOPS concepts
  • Ans. 

    OOPS concepts are fundamental principles in object-oriented programming that help in designing and implementing software solutions.

    • Encapsulation: Bundling data and methods together in a class to hide implementation details.

    • Inheritance: Creating new classes by inheriting properties and behaviors from existing classes.

    • Polymorphism: Ability of objects to take on many forms and perform different actions based on the contex...

  • Answered by AI
  • Q2. Difference between java and c++
  • Ans. 

    Java is platform-independent, while C++ is not. Java uses automatic memory management, while C++ requires manual memory management.

    • Java is platform-independent, meaning that Java programs can run on any operating system that has a Java Virtual Machine (JVM). C++ programs, on the other hand, are compiled into machine code specific to the target platform.

    • Java uses automatic memory management through garbage collection, w...

  • Answered by AI
  • Q3. Explain SQL join statements
  • Ans. 

    SQL join statements are used to combine rows from two or more tables based on a related column between them.

    • Join statements are used to retrieve data from multiple tables in a single query.

    • Common types of join statements include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Join conditions are specified using the ON keyword followed by the columns to join on.

    • Join statements can be used to fetch related data from dif...

  • Answered by AI
  • Q4. Explain normalisation and types
  • Ans. 

    Normalization is the process of organizing data in a database to eliminate redundancy and improve data integrity.

    • Normalization is used to minimize data duplication and ensure consistency.

    • There are different normal forms (1NF, 2NF, 3NF, etc.) that define specific rules for organizing data.

    • Normalization helps in reducing data anomalies and improving database performance.

    • Normalization involves breaking down a large table ...

  • Answered by AI

Interview Preparation Tips

College Name: Ssn college of engineering

Skills evaluated in this interview

Programmer Analyst Interview Questions Asked at Other Companies for undefined

asked in Cognizant
Q1. What is stack? How do you convert a queue to stack?
Q2. What is SQL? define ddl? Why should we hire you?
asked in Cognizant
Q3. What is the difference between structure and class?
asked in Cognizant
Q4. Two defined table and fetching data is done one table has 20 reco ... read more
asked in Cognizant
Q5. What is the difference between RDBMS and DBMS? Explain database w ... read more

Interview Preparation Tips

College Name: rvr & jc college of engineering

I was interviewed before May 2016.

Interview Questionnaire 

4 Questions

  • Q1. Difference between a motor and generator?
  • Ans. 

    A motor converts electrical energy into mechanical energy, while a generator converts mechanical energy into electrical energy.

    • Motors use electrical energy to create motion, while generators use motion to create electrical energy.

    • Motors have a rotor and a stator, while generators have a stator and a rotor.

    • Examples of motors include electric fans, washing machines, and power tools, while examples of generators include w

  • Answered by AI
  • Q2. Difference between C and C++
  • Ans. 

    C is a procedural programming language, while C++ is an extension of C with added features like object-oriented programming.

    • C is a procedural language, while C++ supports both procedural and object-oriented programming.

    • C++ has additional features like classes, inheritance, and polymorphism.

    • C++ supports function overloading and exception handling, which are not available in C.

    • C++ has a standard template library (STL) th...

  • Answered by AI
  • Q3. Write a program on inheritance
  • Ans. 

    A program demonstrating inheritance in programming

    • Inheritance allows a class to inherit properties and methods from another class

    • The derived class can add its own properties and methods

    • Inheritance promotes code reusability and modularity

    • Example: Creating a base class 'Animal' with properties like 'name' and 'age', and a derived class 'Dog' inheriting from 'Animal' with an additional property 'breed'

  • Answered by AI
  • Q4. Tell me about your project
  • Ans. 

    I developed a web-based inventory management system for a retail company.

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

    • Implemented a RESTful API using Node.js and Express.js for the back-end

    • Utilized a MySQL database to store and manage inventory data

    • Implemented features like product search, order management, and reporting

    • Ensured data security and user authentication through encryption and authentication m

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: You will be asked questions from various topics like trains,time,syllogism to check your problem solving skills and the time management.
Verbal part contains questions which tests our vocabulary, grammatical knowledge.
Tips: Basic mathematics which we studied in our 6th grade.
Little thinking will help good.
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical + HR Interview
Experience: They asked me some basic questions from my field. All they look for is the basic programming skills and they check if you can learn new stuffs and employ it with in a short period of time.
Tips: Try to answer all the questions.
If you don't know the answer let them know.
Be confident on your answers.
Be bold and answer the questions without any hesitation.

College Name: Sri Krishna College Of Engineering And Technology

Skills evaluated in this interview

Cognizant interview questions for designations

 Programmer Analyst Trainee

 (401)

 Senior Programmer Analyst

 (1)

 Junior Programmer Analyst

 (1)

 Programmer

 (28)

 SAS Programmer Analyst

 (1)

 Programmer Analyst 1

 (5)

 Programmer Analyst Intern

 (1)

 Sse Programmer Analyst

 (1)

Cognizant Interview FAQs

How many rounds are there in Cognizant Programmer Analyst interview for freshers?
Cognizant interview process for freshers usually has 2-3 rounds. The most common rounds in the Cognizant interview process for freshers are Aptitude Test, Technical and Resume Shortlist.
How to prepare for Cognizant Programmer Analyst interview for freshers?
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 Manual Testing, Smoke Testing, Test Cases, Test Data and Test Planning.
What are the top questions asked in Cognizant Programmer Analyst interview for freshers?

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

  1. Two defined table and fetching data is done one table has 20 records of 20 stud...read more
  2. If i want to select uncommon records which does not match how to pi...read more
  3. Technical: SQL queries of join b/w three tables Sorting in descending order c ...read more
How long is the Cognizant Programmer Analyst interview process?

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

Tell us how to improve this page.

Cognizant Interview Process

based on 73 interviews

5 Interview rounds

  • Resume Shortlist Round
  • Aptitude Test Round
  • Technical Round
  • HR Round
  • Personal Interview1 Round
View more
Cognizant Programmer Analyst Salary
based on 55.5k salaries
₹2.4 L/yr - ₹9.5 L/yr
7% less than the average Programmer Analyst Salary in India
View more details

Cognizant Programmer Analyst Reviews and Ratings

based on 5.5k reviews

3.6/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

3.1

Salary

3.4

Job security

3.5

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 5.5k Reviews and Ratings
Associate
72.1k 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.9k 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