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

Filter interviews by

Cognizant Interview Questions and Answers for Freshers

Updated 14 Aug 2025
Popular Designations

500 Interview questions

A Process Associate was asked 10mo ago
Q. What are accounts receivable and accounts payable?
Ans. 

Accounts receivable is the money owed to a company by its customers, while accounts payable is the money owed by a company to its suppliers.

  • Accounts receivable is the money that a company is owed by its customers for goods or services provided on credit.

  • Accounts payable is the money that a company owes to its suppliers for goods or services received on credit.

  • Accounts receivable is an asset on the company's balanc...

View all Process Associate interview questions
An Associate Tester was asked 10mo ago
Q. What is your skill level with coding?
Ans. 

Proficient in coding with experience in languages like Java, Python, and SQL.

  • Experience in writing test scripts using Java for automation testing

  • Familiarity with Python for data analysis and scripting tasks

  • Knowledge of SQL for database testing and querying

  • Ability to read and understand code written in various languages

View all Associate Tester interview questions
A Programmer Analyst Trainee was asked 11mo ago
Q. Write a program to determine if a number is prime.
Ans. 

Program to check if a number is prime or not

  • Create a function to check if a number is prime by iterating from 2 to the square root of the number

  • If the number is divisible by any number in that range, it is not prime

  • Handle edge cases like 0, 1, and negative numbers

View all Programmer Analyst Trainee interview questions
A Programmer Analyst was asked 11mo ago
Q. What is Python?
Ans. 

Python is a high-level programming language known for its simplicity and readability.

  • Python is interpreted, not compiled

  • It supports multiple programming paradigms like procedural, object-oriented, and functional programming

  • Python has a large standard library and a vibrant community for support

  • Example: print('Hello, World!') is a simple Python program that prints 'Hello, World!' to the console

View all Programmer Analyst interview questions

What people are saying about Cognizant

View All
armycarat
Verified Icon
6d
works at
Cognizant
Cognizant Notice Period: Need hacks to cut it short!
Hey everyone! 👋 I joined Cognizant in July 2021 and I'm a billable resource. My notice period is showing as 90 days, BUT my offer letter doesn't mention any notice period at all 🤨 I’m planning to resign soon and want to reduce the notice period to 60 days. I’m open to buyout or leave encashment. For those who've been through this: * Who should I approach first — manager or HR? * What worked for you? * Any tricks to speed up the release? Really need some guidance from anyone who’s navigated this 🙏
Got a question about Cognizant?
Ask anonymously on communities.
A Programmer Analyst was asked 11mo ago
Q. What are the key constraints?
Ans. 

Key constraints are rules that enforce uniqueness and relationships in a database.

  • Key constraints ensure that each record in a table is uniquely identified.

  • Primary key constraint enforces uniqueness and ensures each record has a unique identifier.

  • Foreign key constraint establishes a relationship between two tables based on a key field.

  • Unique key constraint ensures that all values in a column are unique.

View all Programmer Analyst interview questions
An Intern was asked 11mo ago
Q. Introduce yourself to us.
Ans. 

I am a passionate student eager to learn and contribute, with a strong background in teamwork and problem-solving skills.

  • Currently pursuing a degree in Computer Science, focusing on software development.

  • Completed an internship at XYZ Company, where I developed a web application that improved user engagement by 30%.

  • Active member of the university coding club, where I collaborate with peers on various programming pr...

View all Intern interview questions

Cognizant HR Interview Questions

173 questions and answers

Q. Are you willing to work flexible hours?
Q. Tell me about your last weekend.
Q. Tell me about your college days.
A Senior Processing Executive was asked 11mo ago
Q. How do you resolve different Salesforce tickets?
Ans. 

Resolving Salesforce tickets involves investigating and addressing customer inquiries.

  • Understand the nature of the ticket and prioritize based on urgency

  • Research solutions within Salesforce knowledge base or consult with team members

  • Communicate with customer to gather more information and provide updates on progress

  • Implement solutions and follow up to ensure customer satisfaction

View all Senior Processing Executive interview questions
Are these interview questions helpful?
A Senior Business Analyst was asked 12mo ago
Q. What is Product Management?
Ans. 

Product Management involves overseeing the development and marketing of a product throughout its lifecycle.

  • Involves defining the product strategy and roadmap

  • Collaborating with cross-functional teams such as engineering, design, and marketing

  • Analyzing market trends and competition

  • Gathering and prioritizing product requirements

  • Ensuring the product meets customer needs and business goals

View all Senior Business Analyst interview questions
A Senior Business Analyst was asked 12mo ago
Q. Explain your understanding of the Job Description.
Ans. 

Understanding of the JD refers to comprehending the job description and requirements for the Senior Business Analyst role.

  • Understanding the key responsibilities outlined in the job description

  • Identifying the required skills and qualifications for the position

  • Recognizing the goals and objectives of the role

  • Aligning personal experience and expertise with the job requirements

  • Ability to analyze business processes and ...

View all Senior Business Analyst interview questions
🔥 Asked by recruiter 2 times
A Senior Business Analyst was asked 12mo ago
Q. What do you know about SDLC?
Ans. 

SDLC stands for Software Development Life Cycle, a process used by software development teams to design, develop, and test high-quality software.

  • SDLC is a structured process that consists of several phases including planning, analysis, design, implementation, testing, and maintenance.

  • Each phase has its own set of activities and deliverables that contribute to the overall success of the project.

  • SDLC helps ensure th...

View all Senior Business Analyst interview questions

Cognizant Interview Experiences

551 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Difference between absolute and relative Xpath
  • Ans. 

    Absolute Xpath starts from the root element, while relative Xpath starts from any node in the DOM structure.

    • Absolute Xpath starts with a single forward slash (/) and starts selection from the root node.

    • Relative Xpath starts with a double forward slash (//) and starts selection from the current node or any node in the DOM structure.

    • Absolute Xpath is more brittle and prone to breaking if the structure of the page changes...

  • Answered by AI
  • Q2. What would be return if multiple tabs are open
  • Ans. 

    The return would be the number of tabs open in the browser.

    • The return value would be an integer representing the count of open tabs.

    • For example, if there are 5 tabs open, the return value would be 5.

  • Answered by AI
  • Q3. What are the waits in selenium
  • Ans. 

    Types of waits in Selenium include Implicit Wait, Explicit Wait, and Fluent Wait.

    • Implicit Wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit Wait: Waits for a certain condition to occur before proceeding further in the code.

    • Fluent Wait: Waits for a condition to be true with a defined polling frequency.

    • Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

  • Answered by AI
  • Q4. Exceptions in selenium
  • Ans. 

    Exceptions in Selenium are errors that occur during test execution, disrupting the flow of the test script.

    • Exceptions are thrown when there is an unexpected behavior in the application under test or in the test script itself.

    • Common exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, and StaleElementReferenceException.

    • Handling exceptions in Selenium can be done using try-...

  • Answered by AI
  • Q5. What is feature and step definitions in cucumber BDD
  • Ans. 

    Feature files contain high-level description of the functionality to be tested, while step definitions are the implementation of the steps in the feature file using code.

    • Feature files are written in Gherkin syntax and describe the behavior of the application in plain text.

    • Step definitions are written in programming languages like Java, Ruby, etc., and map the steps in the feature file to automation code.

    • Feature files a...

  • Answered by AI
  • Q6. How to input data in cucumber
  • Ans. 

    Data can be input in Cucumber using feature files and step definitions.

    • Data can be input in feature files using scenarios and scenario outlines

    • Step definitions can be used to define the actions to be taken with the input data

    • Data tables can be used in feature files to input structured data

    • Examples keyword can be used in scenario outlines to provide multiple sets of input data

  • Answered by AI
  • Q7. Basic Java questions like access modifiers, method overloading and overriding
  • Q8. What is Test case, Test plan and Test Secenarios
  • Ans. 

    Test case is a set of conditions or variables under which a tester will determine whether a system under test satisfies requirements. Test plan is a document outlining the scope, approach, resources, and schedule of testing activities. Test scenarios are detailed descriptions of possible interactions with the system.

    • Test case: specific conditions to be tested, expected results, steps to execute

    • Test plan: overall strate...

  • Answered by AI
  • Q9. Hooks in Java
  • Ans. 

    Hooks in Java are methods that allow subclasses to override or extend the behavior of a superclass.

    • Hooks are commonly used in frameworks like JUnit and TestNG for test automation.

    • They are often used for setup and teardown operations before and after test methods.

    • Examples include @Before, @After, @BeforeClass, and @AfterClass annotations in JUnit.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The second round interview was quite challenging, with numerous questions focused on core Java topics such as data structures and linked lists. It felt less like a testing interview and more akin to a developer interview.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Can you provide a self-introduction along with a description of your skills?
  • Ans. 

    I am a detail-oriented Process Executive with strong analytical skills and experience in process improvement.

    • Experienced in analyzing and optimizing business processes

    • Proficient in data analysis and reporting

    • Skilled in project management and problem-solving

    • Strong communication and teamwork abilities

  • Answered by AI
  • Q2. Common topic has been given to check english fluency
Round 2 - One-on-one 

(3 Questions)

  • Q1. Can you provide a self-introduction?
  • Ans. 

    I am a dedicated and detail-oriented professional with a strong background in process management and execution.

    • I have X years of experience in process management and execution.

    • I am skilled in analyzing data and identifying areas for improvement.

    • I have a proven track record of meeting deadlines and exceeding targets.

    • I am a team player and have excellent communication skills.

    • I am proficient in using various software tool...

  • Answered by AI
  • Q2. What are your salary expectations?
  • Ans. 

    My salary expectations are in line with industry standards and based on my experience and qualifications.

    • Research industry standards for the position

    • Consider my experience and qualifications

    • Be open to negotiation based on benefits package

  • Answered by AI
  • Q3. Night shift is ok or not
  • Ans. 

    Working night shifts can be challenging but offers benefits like higher pay and less traffic.

    • Night shifts often come with a higher pay rate, which can be financially beneficial.

    • They can provide a quieter work environment, allowing for increased focus.

    • Some people find they are more productive at night due to fewer distractions.

    • However, night shifts can disrupt sleep patterns and lead to health issues if not managed prop...

  • Answered by AI

GenC Next Interview Questions & Answers

user image Anonymous

posted on 4 Dec 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Campus Placement and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Basic questions related to python, data types, and other basic definitions.
  • Q2. Mini coding round including reverse string, max element in list, (Some people were asked to code sorting algos too according to my knowledge).
  • Q3. SQL basics, normalisation and coding related to joins, group by
  • Q4. Resume Projects explanation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with the basics and your projects, don't really need to deep dive into any particular domain and keep your DSA concepts clear.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Tell me about yourself
  • Q2. Are you comfortable with rotational shifts?
  • Ans. 

    Yes, I am comfortable with rotational shifts. I understand that flexibility is important in this role, and I am ready to adjust my schedule as needed.

  • Answered Anonymously
  • Q3. Can you speak Tamil fluently for voice process?
  • Ans. 

    Yes, I can speak Tamil fluently. I am confident in handling voice process roles in Tamil and can communicate clearly and effectively with customers.

  • Answered Anonymously
  • Q4. What are your strengths?
  • Q5. Are you comfortable working from office or from home?
  • Ans. 

    Yes, I am comfortable working from both office and home. However, I prefer working from the office as it helps me stay focused, communicate easily with my team, and learn better.

  • Answered Anonymously
  • Q6. Are you willing to join immediately?
  • Ans. 

    Yes, I am ready to join immediately and contribute to the team with my skills and dedication.

    • I have completed all necessary formalities and am prepared to start right away.

    • I am eager to apply my skills in customer support and help enhance customer satisfaction.

    • My previous experience allows me to quickly adapt to new environments and processes.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepare well for the basic interview questions. Practice speaking clearly, especially if you're applying for voice process jobs. Learn a bit of MS Office and be honest about your strengths. Even if you are a fresher, show your interest to learn. Stay positive and don’t give up.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Aptitude Test 

It was conducted in Superset.

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce you self
  • Ans. 

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

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

    • Proficient in analyzing user requirements and designing solutions

    • Strong problem-solving skills and attention to detail

    • Familiar with database management systems like MySQL and Oracle

  • Answered by AI
  • Q2. College project details
  • Ans. 

    Developed a web-based application for managing student records and grades, enhancing efficiency and accessibility for faculty and students.

    • Utilized HTML, CSS, and JavaScript for front-end development.

    • Implemented a MySQL database for storing student information.

    • Created user authentication features for secure access.

    • Designed a responsive interface for mobile and desktop users.

    • Conducted user testing to gather feedback and...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Just the documents verification
  • Q2. Are you comfortable with the possibility of relocating?
  • Ans. 

    Yes, I am open to relocating for the right opportunity.

    • I am willing to relocate for a position that aligns with my career goals and offers growth opportunities.

    • I have relocated in the past for job opportunities and have found it to be a positive experience.

    • I understand that relocating may be necessary for certain roles and am prepared to make that commitment.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest; it's simpler if you have graduated from college.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. What are the concepts of Object-Oriented Programming (OOP), and can you provide an example? Asp.net core Mvc related questions like middle ware. Solid principal In sql server -: Indexes, joins , trigger An...
  • Ans. 

    Key OOP concepts, ASP.NET Core MVC middleware, SQL Server features, and CTE explained with examples.

    • OOP Concepts: Encapsulation, Inheritance, Polymorphism, Abstraction.

    • Example of Encapsulation: Using properties in a class to restrict access.

    • ASP.NET Core Middleware: Components that handle requests and responses.

    • Example of Middleware: Authentication middleware that checks user credentials.

    • SOLID Principles: Five design pr...

  • Answered by AI
  • Q2. Basic programming like reverse string Count occurence of character like wise program
  • Q3. Now a days they focus on azure and cloud based questions some what basic knowledge required.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Whats about you
  • Ans. 

    I am a dedicated professional with a passion for problem-solving and a strong background in analytical thinking.

    • Strong analytical skills: I excel in breaking down complex problems into manageable parts, as demonstrated in my previous role where I improved process efficiency by 20%.

    • Team player: I thrive in collaborative environments, having successfully led a project team to meet tight deadlines while maintaining high-q...

  • Answered by AI
  • Q2. How talented in this process role
  • Q3. Analyzing data on employee skills, performance, and engagement to identify areas for improvement and track progress.
  • Q4. Is a conversational phrase used to reciprocate a question or statement. It's a way of inviting the other person to share their perspective or experience on the same topic. It's a common way to shift the fo...

Interview Preparation Tips

Interview preparation tips for other job seekers - Please give me the opportunity I will give my sucess to effort an work full fill
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jul 2025, where I was asked the following questions.

  • Q1. Java related , selenium , appium related , work model related , project related ,framework related.
  • Q2. Diffrent skill set knowledge related

Technician Interview Questions & Answers

user image PrudthviVijay Simha

posted on 22 Jul 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. About project that i did
  • Ans. 

    I have worked on various projects, including system upgrades, troubleshooting, and implementing new technologies.

    • Upgraded the network infrastructure for a local business, improving speed and reliability.

    • Troubleshot and resolved hardware issues for clients, ensuring minimal downtime.

    • Implemented a new inventory management system that streamlined operations and reduced errors.

    • Collaborated with a team to deploy a cloud-bas...

  • Answered by AI
  • Q2. Regarding software testing life cycle
  • Ans. 

    I had learn about Manual testing as per customer requirement how to test an application to find bugs

  • Answered by PrudthviVijay Simha
  • Q3. Software development Life cycle
  • Ans. 

    The Software Development Life Cycle (SDLC) is a structured process for developing software applications.

    • 1. Requirement Analysis: Gathering and analyzing user requirements.

    • 2. Design: Creating architecture and design specifications, e.g., UML diagrams.

    • 3. Implementation: Writing code based on design specifications.

    • 4. Testing: Verifying that the software meets requirements, e.g., unit testing.

    • 5. Deployment: Releasing the s...

  • Answered by AI
  • Q4. Structure query language
  • Q5. Java with selenium automations

Interview Preparation Tips

Interview preparation tips for other job seekers - I need employment offer in your company as a fresher.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Every single oops concepts
  • Q2. Every sql questions possiible
Round 2 - HR 

(2 Questions)

  • Q1. I attended only technical not yet results announced
  • Q2. I attended only technical not yet result announced

Cognizant Interview FAQs

How many rounds are there in Cognizant 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 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 Communication Skills, Non Voice Process, voice process, non voice and bpo.
What are the top questions asked in Cognizant interview for freshers?

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

  1. Attitude related question. 5gm of gold plate to be given to worker each day in ...read more
  2. if you promised a customer for the product on a specific day and your company w...read more
  3. Write a code of Prime number which are printed in the Right angle triangle form...read more
What are the most common questions asked in Cognizant HR round for freshers?

The most common HR questions asked in Cognizant interview are for freshers -

  1. Tell me about yourse...read more
  2. What are your salary expectatio...read more
  3. Where do you see yourself in 5 yea...read more
How long is the Cognizant interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 294 interview experiences

Difficulty level

Easy 28%
Moderate 68%
Hard 4%

Duration

Less than 2 weeks 55%
2-4 weeks 30%
4-6 weeks 8%
6-8 weeks 3%
More than 8 weeks 5%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.5
 • 11.3k Interviews
Accenture Interview Questions
3.7
 • 8.8k Interviews
Infosys Interview Questions
3.6
 • 8k Interviews
Wipro Interview Questions
3.7
 • 6.2k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.2k Interviews
HCLTech Interview Questions
3.5
 • 4.2k Interviews
Genpact Interview Questions
3.7
 • 3.5k Interviews
IBM Interview Questions
3.9
 • 2.5k Interviews
DXC Technology Interview Questions
3.6
 • 848 Interviews
View all

Cognizant Reviews and Ratings

based on 55.8k reviews

3.7/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

3.3

Salary

3.5

Job security

3.6

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 55.8k Reviews and Ratings
Process Specialist - Mortgage Underwriting

Navi Mumbai,

Mumbai

5-10 Yrs

Not Disclosed

Presales Solutions Manager

Pune,

Bangalore / Bengaluru

+1

5-10 Yrs

Not Disclosed

Temenos Developer

Hyderabad / Secunderabad,

Pune

5-13 Yrs

Not Disclosed

Explore more jobs
Associate
71.2k salaries
unlock blur

₹5.3 L/yr - ₹12.6 L/yr

Programmer Analyst
56k salaries
unlock blur

₹3.5 L/yr - ₹8 L/yr

Senior Associate
55.9k salaries
unlock blur

₹10.1 L/yr - ₹23.8 L/yr

Senior Processing Executive
30.1k salaries
unlock blur

₹2.5 L/yr - ₹6.5 L/yr

Technical Lead
18.6k salaries
unlock blur

₹6 L/yr - ₹21.7 L/yr

Explore more salaries
Compare Cognizant with

TCS

3.5
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview