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 25 Feb 2025

Top Cognizant Interview Questions and Answers

View all 3k questions

Cognizant Interview Experiences

Popular Designations

5.6k interviews found

Associate Interview Questions & Answers

user image Anonymous

posted on 17 Dec 2024

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

I applied via Walk-in and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(7 Questions)

  • Q1. Java new features in 8
  • Ans. 

    Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to treat functionality as a method argument.

    • Functional interfaces have a single abstract method and can be used with lambda expressions.

    • Streams provide a way to work with sequences of elements and perform operations on them.

    • Default methods allow interfaces to have method ...

  • Answered by AI
  • Q2. Difficulties faced in the current/previous project & how we resolved it
  • Ans. 

    We faced challenges with communication and conflicting priorities, resolved through regular team meetings and clear task delegation.

    • Lack of clear communication among team members

    • Conflicting priorities leading to delays in project timeline

    • Resolved by scheduling regular team meetings to discuss progress and issues

    • Clear task delegation to ensure everyone knows their responsibilities

  • Answered by AI
  • Q3. What is OOPS
  • Ans. 

    OOPS stands for Object-Oriented Programming System. 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, inheritance, and polymorphism are key principles of OOPS.

    • Examples of OOPS languages include Java, C++, and Python.

  • Answered by AI
  • Q4. What is Functional programming
  • Ans. 

    Functional programming is a programming paradigm that treats computation as the evaluation of mathematical functions and avoids changing state and mutable data.

    • Focuses on pure functions that do not have side effects

    • Emphasizes immutability and avoids changing state

    • Uses higher-order functions and function composition

    • Commonly used languages include Haskell, Scala, and Clojure

  • Answered by AI
  • Q5. Difference between OOPS and functional programming
  • Ans. 

    OOPS focuses on objects and classes, while functional programming focuses on functions and immutability.

    • OOPS is based on the concept of objects and classes, allowing for encapsulation, inheritance, and polymorphism.

    • Functional programming emphasizes on functions as first-class citizens, immutability, and avoiding side effects.

    • OOPS is more suitable for complex, real-world applications with changing state, while functiona...

  • Answered by AI
  • Q6. Which framework I worked in Java
  • Ans. 

    I have worked with the Spring framework in Java.

    • Utilized Spring MVC for web development

    • Implemented dependency injection with Spring IoC container

    • Integrated Spring Security for authentication and authorization

  • Answered by AI
  • Q7. What all are the annotations that we use in Spring Boot & it's usage
  • Ans. 

    Some common annotations used in Spring Boot are @RestController, @Autowired, @RequestMapping, @Service, @Component, @Repository.

    • @RestController - Used to define a controller class in Spring MVC.

    • @Autowired - Used for automatic dependency injection.

    • @RequestMapping - Used to map web requests to specific handler methods.

    • @Service - Indicates that a class is a service.

    • @Component - Indicates that a class is a Spring component...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself, work experience & education
  • Ans. 

    I am a dedicated professional with a strong educational background and diverse work experience.

    • I have a Bachelor's degree in Business Administration from XYZ University.

    • I have worked in various roles in marketing, sales, and customer service.

    • I am proficient in Microsoft Office Suite and have excellent communication skills.

    • I am a quick learner and thrive in fast-paced environments.

    • I am passionate about continuous learni

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cognizant Associate interview:
  • Java 8
  • Spring Boot
  • OOPS
Interview preparation tips for other job seekers - Be good at the basics of Java and Spring Boot

Top Cognizant Associate Interview Questions and Answers

Q1. How to decide whether to use "call" or "apply" in javascript?
View answer (9)

Associate Interview Questions asked at other Companies

Q1. What is mean of TTR & why required for powder coating process ?
View answer (17)
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

Top Cognizant Automation Test Engineer Interview Questions and Answers

Q1. 5. Git repository . How to push and pull code.
View answer (3)

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)

Software Engineer Interview Questions & Answers

user image mounika chittinni

posted on 30 Dec 2024

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

I applied via Walk-in and was interviewed in Nov 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Aptitude is one of best round, to improve our skills knowledge technology.

Round 2 - Group Discussion 

GD is one of best round, because I love this round, sharing my knowledge ideas thinking views, to others for company growth organization growth, this round shows how much skills r there in person can be easily identified .

Round 3 - HR 

(2 Questions)

  • Q1. Urs work experience ?
  • Ans. 

    I have 5 years of experience working as a Software Engineer in various tech companies.

    • Worked on developing web applications using technologies like JavaScript, HTML, CSS, and React

    • Experience with backend development using Node.js and MongoDB

    • Familiar with Agile methodologies and version control systems like Git

    • Collaborated with cross-functional teams to deliver high-quality software solutions

    • Participated in code reviews

  • Answered by AI
  • Q2. Urs new skills ?
  • Ans. 

    I have recently acquired skills in machine learning and data analysis.

    • Completed online courses in machine learning algorithms

    • Practiced data analysis techniques using Python and R

    • Attended workshops on deep learning models

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Do u act as team lead?
  • Ans. 

    Yes, I have experience acting as a team lead in previous projects.

    • Yes, I have acted as a team lead in previous projects where I was responsible for coordinating tasks and ensuring project deadlines were met.

    • I have experience delegating tasks to team members based on their strengths and expertise.

    • I have also facilitated team meetings to discuss progress, address any issues, and brainstorm solutions.

    • In one project, I led...

  • Answered by AI
  • Q2. Urs projects
Round 5 - Technical 

(2 Questions)

  • Q1. On technical how could u work from projects to projects
  • Q2. How many days u will work on single project
  • Ans. 

    The duration of working on a single project varies depending on the project complexity and requirements.

    • The duration of working on a single project can range from a few days to several months or even years.

    • Factors such as project scope, team size, resources, and deadlines influence the duration of the project.

    • For example, a small project with a clear scope may take a few days to complete, while a large-scale project ma

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cognizant Software Engineer interview:
  • Aws Devops Python
Interview preparation tips for other job seekers - U must have confidence, flexible to work in any atmosphere

Top Cognizant Software Engineer Interview Questions and Answers

Q1. 2.What programming language are you proficient with..?
View answer (15)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Institute of Aeronautical Engineering, Hyderabad and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy-medium questions were asked in this

Round 2 - Coding Test 

The coding questions are mostly easy-moderate level difficulty and they ask questions based on specific clusters selected ( java, python, c# )

Round 3 - Technical 

(3 Questions)

  • Q1. Mostly he covered all the concepts of DBMS (along with syntaxes)
  • Q2. Asked to solve pseudo codes
  • Q3. Oops in real life with detail explanation along with implementation in java

Interview Preparation Tips

Topics to prepare for Cognizant Programmer Analyst Trainee interview:
  • DBMS
  • OOPS
  • Problem Solving
  • Operating Systems
  • Computer Networking
Interview preparation tips for other job seekers - basic aptitude, moderate problem solving skills, good communication skills are important along with knowledge in core subjects like CN,OS,OOPS and DBMS

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
View answer (7)

Programmer Analyst Trainee Interview Questions asked at other Companies

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
View answer (7)

Cognizant interview questions for popular designations

 Programmer Analyst

 (542)

 Programmer Analyst Trainee

 (402)

 Associate

 (311)

 Senior Associate

 (255)

 Processing Executive

 (211)

 Software Engineer

 (204)

 Senior Processing Executive

 (134)

 Software Developer

 (126)

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

I applied via Walk-in and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Given an array {1, 2, 1, 4, 5, 4, 8, 7}, how can you use Streams to remove duplicates while retaining only the even numbers?
  • Ans. 

    Use Streams to remove duplicates and retain only even numbers from an array.

    • Convert the array to a stream using Arrays.stream()

    • Use distinct() to remove duplicates

    • Filter out odd numbers using filter()

    • Collect the result using collect(Collectors.toList())

  • Answered by AI
  • Q2. What is the use of Static and final when you will use Static methods
  • Ans. 

    Static methods can be accessed without creating an instance of the class, while final keyword makes the method unchangeable.

    • Static methods belong to the class itself, not to any specific instance

    • Final keyword ensures that the method cannot be overridden in subclasses

    • Static methods are commonly used for utility methods that do not require access to instance variables

    • Example: Math class in Java has static methods like Ma

  • Answered by AI
  • Q3. What is the difference between @restController and @controller Annotation
  • Ans. 

    The @RestController annotation is used to define RESTful web services while @Controller annotation is used to define MVC controller.

    • RestController is a specialized version of Controller used for RESTful web services

    • RestController eliminates the need for @ResponseBody annotation

    • Controller is used for traditional MVC controller functionality

    • RestController returns data directly without needing to go through a view resolve...

  • Answered by AI
  • Q4. What is microservices why we use it
  • Ans. 

    Microservices are a software development technique where applications are composed of small, independent services that communicate with each other.

    • Microservices allow for easier scalability and maintenance of complex applications.

    • Each service in a microservices architecture can be developed, deployed, and scaled independently.

    • Microservices promote flexibility and agility in software development.

    • Examples of companies us...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cognizant Senior Java Developer interview:
  • Java SpringBoot
Interview preparation tips for other job seekers - Need to have strong knowledge on basics Java Spring boot and Microservices

Senior Java Developer Interview Questions asked at other Companies

Q1. Remove the Kth Node from the End of a Linked List You are given a singly Linked List with 'N' nodes containing integer data and an integer 'K'. Your task is to delete the Kth node from the end of this Linked List. Input: The first line of ... read more
Add answer

Get interview-ready with Top Cognizant Interview Questions

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

I applied via Walk-in and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(10 Questions)

  • Q1. Ask about filters
  • Q2. What are all the maps used in tableau
  • Q3. Difference between tree map and heat map
  • Q4. What are Lods used
  • Q5. Windows analytical function
  • Q6. Real time question connecting to the data source facing any issues
  • Q7. Any other bi tool you know
  • Q8. What is groups and sets and when to you use
  • Q9. Data source filter
  • Q10. Handle null values

Tableau Developer Interview Questions asked at other Companies

Q1. What are the filters? Name the different filters in tableau?
View answer (7)

Jobs at Cognizant

View all

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.

Top Cognizant GenC Next Interview Questions and Answers

Q1. Pair SumYou are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to return the list of all pairs of elements such that each sum of elements of each pair equals 'S'. Note: Each pair should be sorted i.e the first val... read more
View answer (4)

GenC Next Interview Questions asked at other Companies

Q1. Pair SumYou are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to return the list of all pairs of elements such that each sum of elements of each pair equals 'S'. Note: Each pair should be sorted i.e the first val... read more
View answer (4)

Automation Test Engineer interview

user image RD Automation Learning

posted on 13 Mar 2022

Associated project Interview Questions & Answers

user image Anonymous

posted on 14 Dec 2024

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

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

Round 1 - Technical 

(7 Questions)

  • Q1. What are the concepts of Object-Oriented Programming (OOP), and can you explain them?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve complex problems.

    • Encapsulation: Objects can encapsulate data and behavior within a single unit.

    • Inheritance: Objects can inherit attributes and methods from other objects.

    • Polymorphism: Objects can take on diff...

  • Answered by AI
  • Q2. What is the purpose of a final key?
  • Ans. 

    The final keyword in Java is used to restrict the user from changing the value of a variable, prevent method overriding, and make a class immutable.

    • Final variables cannot be reassigned once initialized.

    • Final methods cannot be overridden in subclasses.

    • Final classes cannot be extended by other classes.

    • Final keyword is often used to create constants in Java.

  • Answered by AI
  • Q3. What are static classes?
  • Ans. 

    Static classes are classes that cannot be instantiated and are used to group related methods and properties.

    • Static classes are declared with the 'static' keyword in languages like C# and Java.

    • They cannot be instantiated and are accessed using the class name itself.

    • Static classes are commonly used for utility classes that contain helper methods.

    • Example: Math class in Java with static methods like Math.max() and Math.min

  • Answered by AI
  • Q4. What is an example of compile-time polymorphism?
  • Ans. 

    An example of compile-time polymorphism is function overloading in C++.

    • Compile-time polymorphism is achieved through method overloading or operator overloading.

    • In C++, function overloading allows multiple functions with the same name but different parameters.

    • The compiler determines which function to call based on the number and types of arguments passed.

    • Example: void print(int x) and void print(double y) are two overlo

  • Answered by AI
  • Q5. What is the significance of the 'this' keyword in Java?
  • Ans. 

    The 'this' keyword in Java refers to the current instance of a class and is used to refer to the current object.

    • Used to differentiate between instance variables and local variables with the same name.

    • Can be used to invoke current class constructor.

    • Helps in passing the current object as a parameter to other methods.

    • Can be used to return the current instance of the class.

  • Answered by AI
  • Q6. What is the program to retrieve all mobile costs from Flipkart and display the maximum cost?
  • Ans. 

    The program retrieves all mobile costs from Flipkart and displays the maximum cost.

    • Use web scraping to extract mobile costs from Flipkart website

    • Store the costs in a list or array

    • Find the maximum cost from the list

    • Display the maximum cost

  • Answered by AI
  • Q7. What is dynamic XPath in Selenium, and how is it used?
  • Ans. 

    Dynamic XPath in Selenium is a way to locate web elements based on changing attributes or positions on a webpage.

    • Dynamic XPath is used when the attributes of an element are not static and change frequently.

    • It allows testers to create XPath expressions that can adapt to these changes.

    • Examples of dynamic XPath include using contains(), starts-with(), or ends-with() functions to locate elements.

    • Using dynamic XPath helps i

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

The first round was the Aptitude Round, during which most candidates were eliminated.

Round 2 - Coding Test 

Three coding questions, one SQL task, and one development-related task.

Round 3 - Technical 

(2 Questions)

  • Q1. My Interview went for 40 min. in which 30 minutes he asked me Core Java Concepts and then AWS and then one simple code
  • Q2. Coding question - Write the code to print all the even number indexes from an array.

Interview Preparation Tips

Interview preparation tips for other job seekers - For more details read my article on medium
Link - -----/@KunjMaheshwari/my-cognizant-gen-c-interview-experience-a-journey-of-growth-and-achievement-f59b7abef35b

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
View answer (7)

Programmer Analyst Trainee Interview Questions asked at other Companies

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
View answer (7)

Cognizant Interview FAQs

How many rounds are there in Cognizant interview?
Cognizant interview process usually has 2-3 rounds. The most common rounds in the Cognizant interview process are Technical, HR and Resume Shortlist.
How to prepare for Cognizant 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 Java, Project Management, SQL, Project Planning and Javascript.
What are the top questions asked in Cognizant interview?

Some of the top questions asked at the Cognizant interview -

  1. 1 Tell me about your self 2 What is c# 3 What is oops concept 4 What is Delegat...read more
  2. What is meant by quality and brief explanation of it with an examp...read more
  3. What array list and linkedlist difference,how hashmap internally working,what i...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.

Cognizant Interview Process

based on 4.2k interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k 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 Reviews and Ratings

based on 49.9k reviews

3.8/5

Rating in categories

3.7

Skill development

3.6

Work-life balance

3.3

Salary

3.6

Job security

3.6

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 49.9k Reviews and Ratings
Cognizant Hiring For - Content Manager on Demand (CMOD)

Hyderabad / Secunderabad,

Chennai

+1

4-9 Yrs

Not Disclosed

Cognizant Hiring For - OpenText xPression

Hyderabad / Secunderabad,

Chennai

+1

4-9 Yrs

Not Disclosed

Cognizant Hiring For - OpenText Exstream, Developer, Cloud Edition, Cl

Hyderabad / Secunderabad,

Chennai

+1

4-9 Yrs

Not Disclosed

Explore more jobs
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.5 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.7 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