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 Software Tester Interview Questions and Answers

Updated 2 May 2025

12 Interview questions

A Software Tester was asked 1mo ago
Q. Why is Selenium the most popular testing tool?
Ans. 

Selenium is a widely-used testing tool for automating web applications, known for its flexibility and support for multiple languages.

  • Open Source: Selenium is free to use, which makes it accessible for both individual developers and large organizations.

  • Cross-Browser Testing: Selenium supports multiple browsers like Chrome, Firefox, and Safari, allowing tests to be run across different environments.

  • Language Support:...

A Software Tester was asked 1mo ago
Q. What are mouse actions?
Ans. 

Mouse actions refer to the various interactions a user can perform with a mouse, such as clicking, dragging, and scrolling.

  • Click: A single press and release of a mouse button, often used to select items or execute commands. Example: Clicking a button to submit a form.

  • Double Click: Quickly pressing the mouse button twice, typically used to open files or applications. Example: Double-clicking a desktop icon to launc...

Software Tester Interview Questions Asked at Other Companies

Q1. You are given test scenarios and have to execute all test cases, ... read more
asked in Amdocs
Q2. What is the best technique to generate automated test reports?
Q3. What is SDLC and STLC ? Types of Testing?Types Of Test Cases And ... read more
Q4. 1) What is Software Testing. 2) SDLC vs STLC 3) What is Positive ... read more
asked in Infosys
Q5. What is mean by automation testing and manual testing
A Software Tester was asked 1mo ago
Q. Explain the difference between findElement and findElements.
Ans. 

findElement returns a single web element, while findElements returns a list of web elements matching the criteria.

  • Return Type: findElement returns a single WebElement, while findElements returns a List<WebElement>.

  • Usage: Use findElement when you expect only one element to match the criteria, e.g., driver.findElement(By.id('submit')).

  • Multiple Matches: Use findElements when you expect multiple elements, e.g., ...

A Software Tester was asked 1mo ago
Q. What is an XPath locator?
Ans. 

XPath is a language used to navigate through elements and attributes in XML documents, often used in web automation testing.

  • Path Expression: XPath uses path expressions to select nodes from an XML document, e.g., '/html/body/div' selects a div element.

  • Axes: XPath supports various axes like 'child', 'parent', 'ancestor', allowing for complex queries, e.g., 'ancestor::div' selects all ancestor divs.

  • Predicates: XPath...

What people are saying about Cognizant

View All
schedule2
Verified Icon
2w
works at
Cognizant
Salary expectation
I have 5+ years of experience in springboot microservices, currently working in CTS and having 10L CTC , wanted to switch in Infosys or Accenture like companies, how much should I ask for 15L-18L ? Just worried if I ask more they can reject my application, please help me with some numbers
Got a question about Cognizant?
Ask anonymously on communities.
A Software Tester was asked 7mo ago
Q. What is smoke testing?
Ans. 

Smoke testing is a preliminary testing to check if the basic functionalities of a software application are working fine.

  • Performed at the beginning of testing phase

  • Focuses on basic functionality

  • Not detailed testing

  • Helps in identifying major issues early on

  • Usually automated for efficiency

A Software Tester was asked
Q. What is synchronization?
Ans. 

Synchronization is the process of coordinating multiple threads to ensure they access shared resources in a controlled manner.

  • Synchronization prevents race conditions and deadlocks.

  • It can be achieved using locks, semaphores, and monitors.

  • Examples include synchronized methods in Java and mutexes in C++.

  • Synchronization can impact performance and should be used judiciously.

A Software Tester was asked
Q. What are threading and locking?
Ans. 

Threading is a way of executing multiple tasks simultaneously while locking is a mechanism to prevent data inconsistency.

  • Threading allows multiple threads to run concurrently in a single process

  • Locking is used to prevent multiple threads from accessing shared resources simultaneously

  • Locking can be implemented using mutex, semaphore, or monitor

  • Deadlocks can occur if locking is not implemented properly

Are these interview questions helpful?
A Software Tester was asked
Q. How can Jasmine and Selenium be used and integrated into an application?
Ans. 

Jasmin is a testing framework and Selenium is a tool for automating web browsers. They can be integrated to test web applications.

  • Jasmin is a behavior-driven development (BDD) testing framework that uses natural language to describe test scenarios.

  • Selenium is a tool for automating web browsers and can be used to simulate user interactions with a web application.

  • Jasmin and Selenium can be integrated to test web app...

A Software Tester was asked
Q. How do you handle alert pop-ups in Selenium?
Ans. 

Handling alert pop up in Selenium

  • Use Alert interface to handle alert pop up

  • Switch to alert using driver.switchTo().alert()

  • Accept or dismiss alert using accept() or dismiss() method

  • Get text from alert using getText() method

  • Send keys to alert using sendKeys() method

🔥 Asked by recruiter 3 times
A Software Tester was asked
Q. What is a pointer?
Ans. 

A pointer is a variable that stores the memory address of another variable.

  • Pointers are used to manipulate data directly in memory.

  • They are commonly used in programming languages like C and C++.

  • Pointers can be used to pass data between functions efficiently.

  • They can also be used to dynamically allocate memory.

  • Example: int *ptr; // declares a pointer to an integer variable

Cognizant Software Tester Interview Experiences

15 interviews found

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

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

  • Q1. How do you celebrate your birthday 1 year ago
  • Ans. 

    Last year, I celebrated my birthday with a cozy gathering of friends, delicious food, and memorable activities that brought us closer.

    • Intimate Gathering: I invited a small group of close friends to my home for a relaxed evening filled with laughter and conversation.

    • Themed Decorations: I chose a fun theme for the party, decorating the space with balloons and streamers that matched the color scheme.

    • Delicious Food: We enj...

  • Answered by AI
  • Q2. Why selenium is most popular tool
  • Ans. 

    Selenium is a widely-used testing tool for automating web applications, known for its flexibility and support for multiple languages.

    • Open Source: Selenium is free to use, which makes it accessible for both individual developers and large organizations.

    • Cross-Browser Testing: Selenium supports multiple browsers like Chrome, Firefox, and Safari, allowing tests to be run across different environments.

    • Language Support: It s...

  • Answered by AI
  • Q3. What is x path locator
  • Ans. 

    XPath is a language used to navigate through elements and attributes in XML documents, often used in web automation testing.

    • Path Expression: XPath uses path expressions to select nodes from an XML document, e.g., '/html/body/div' selects a div element.

    • Axes: XPath supports various axes like 'child', 'parent', 'ancestor', allowing for complex queries, e.g., 'ancestor::div' selects all ancestor divs.

    • Predicates: XPath allo...

  • Answered by AI
  • Q4. Explain differense between findelement and findelements
  • Ans. 

    findElement returns a single web element, while findElements returns a list of web elements matching the criteria.

    • Return Type: findElement returns a single WebElement, while findElements returns a List<WebElement>.

    • Usage: Use findElement when you expect only one element to match the criteria, e.g., driver.findElement(By.id('submit')).

    • Multiple Matches: Use findElements when you expect multiple elements, e.g., drive...

  • Answered by AI
  • Q5. What is mouse actions
  • Ans. 

    Mouse actions refer to the various interactions a user can perform with a mouse, such as clicking, dragging, and scrolling.

    • Click: A single press and release of a mouse button, often used to select items or execute commands. Example: Clicking a button to submit a form.

    • Double Click: Quickly pressing the mouse button twice, typically used to open files or applications. Example: Double-clicking a desktop icon to launch a p...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is smoke testing
  • Ans. 

    Smoke testing is a preliminary testing to check if the basic functionalities of a software application are working fine.

    • Performed at the beginning of testing phase

    • Focuses on basic functionality

    • Not detailed testing

    • Helps in identifying major issues early on

    • Usually automated for efficiency

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Verbal, reasoning, aptitude, grammer and typing test

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduction about myself was the first thing they asked
  • Q2. Basic Technical questions related to major subjects
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Aptitude Test 

Standard aptitude test
Logical reasoning, vocab

Round 2 - HR 

(1 Question)

  • Q1. Why do you want to join cognizant
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Manual questions mostly
Round 2 - Technical 

(1 Question)

  • Q1. Conspects of Manual testing
  • Ans. 

    Manual testing involves executing test cases without the use of automation tools.

    • Manual testing requires human intervention to execute test cases.

    • Testers follow test cases step by step to identify defects in the software.

    • It is time-consuming but allows for more thorough testing compared to automated testing.

    • Examples include exploratory testing, ad-hoc testing, and regression testing.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Oct 2022. There were 2 interview rounds.

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 - One-on-one 

(3 Questions)

  • Q1. Question related to manual Testing
  • Q2. Project related questions
  • Q3. Tools related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear on what you are writing in your resume.
Interviewer will ask you from your resume only so be truthful and clear.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. What is synchronization?
  • Q2. What is threading and locking

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont read just FAQ
Practise coding and unit testing very hard

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Phone Call 

(1 Question)

  • Q1. Call with Recruiter-general background questions.
Round 2 - One-on-one 

(1 Question)

  • Q1. 3 Interviewers asked a mixture of competency and technical questions non software testing.

Interview Preparation Tips

Topics to prepare for Cognizant Software Tester interview:
  • ISTQB
Interview preparation tips for other job seekers - Prepare for general questions on software testing.

I applied via Referral and was interviewed in Apr 2022. There were 3 interview rounds.

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 

Basic quant and english test conducted
very basic questions to solve and get good score

Round 3 - Technical 

(2 Questions)

  • Q1. Basic java questions and Software testing questions like sdlc,stlc etc
  • Q2. Basic software testingg question like smoke,sanity and regression

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for aptitude test
And read basic java and go through sdlc,stlc some selenium basics
Round 1 - Technical 

(1 Question)

  • Q1. Jasmin and selenium how to use and integrate to application

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be aware of autmation testing & all js framework basic flow you need to understand

Skills evaluated in this interview

Cognizant Interview FAQs

How many rounds are there in Cognizant Software Tester interview?
Cognizant interview process usually has 1-2 rounds. The most common rounds in the Cognizant interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for Cognizant Software Tester 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 Banking Operations, Field Work, Java, Medical Coding and SQL.
What are the top questions asked in Cognizant Software Tester interview?

Some of the top questions asked at the Cognizant Software Tester interview -

  1. What is the difference between array and linked l...read more
  2. How to handle alert pop up in seleni...read more
  3. Jasmin and selenium how to use and integrate to applicat...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 10 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more
Cognizant Software Tester Salary
based on 603 salaries
₹3.9 L/yr - ₹9.7 L/yr
29% more than the average Software Tester Salary in India
View more details

Cognizant Software Tester Reviews and Ratings

based on 77 reviews

4.0/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.5

Salary

3.6

Job security

3.8

Company culture

3.4

Promotions

3.7

Work satisfaction

Explore 77 Reviews and Ratings
Associate
73k salaries
unlock blur

₹5.3 L/yr - ₹12.5 L/yr

Programmer Analyst
56.2k salaries
unlock blur

₹3.5 L/yr - ₹7.3 L/yr

Senior Associate
55.1k salaries
unlock blur

₹9.7 L/yr - ₹23.4 L/yr

Senior Processing Executive
29.8k salaries
unlock blur

₹2.3 L/yr - ₹6.5 L/yr

Technical Lead
19k salaries
unlock blur

₹6 L/yr - ₹21 L/yr

Explore more salaries
Compare Cognizant with

TCS

3.6
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview