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
3.8

based on 48.7k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Cognizant Senior Product Support Engineer Interview Questions and Answers

Updated 29 Jul 2022

Cognizant Senior Product Support Engineer Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed in Jun 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 - Technical 

(1 Question)

  • Q1. Java, sql, situational, servicenow.
Round 3 - HR 

(1 Question)

  • Q1. Past history, experience, offer, package.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on knowledge specially practical knowledge.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. WHAT IS sage FRONT END PROGRAMMING LANGUAGE
  • Q2. WHAT ARE THE REGULAR COMPLAINS USERS GET ON SAGE
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How manage major incident management.
  • Ans. 

    Major incident management involves identifying, prioritizing, and resolving critical issues to minimize impact on business operations.

    • Establish a clear process for reporting and escalating major incidents.

    • Prioritize incidents based on impact and urgency to ensure timely resolution.

    • Communicate effectively with stakeholders to provide updates on incident status and resolution.

    • Document incidents and resolutions for future...

  • Answered by AI
  • Q2. Difference between SLAandOLA
  • Ans. 

    SLA is a formal agreement between a service provider and a customer, while OLA is an agreement between different teams within the same organization.

    • SLA is between a service provider and a customer, outlining the services provided, quality, responsibilities, etc.

    • OLA is between different teams within the same organization, defining the interdependent relationships and responsibilities.

    • SLA is external, OLA is internal.

    • SLA...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All questions situations based and some technical questions and some problem solving questions of ITSM
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How can we iterate files in ssis
  • Ans. 

    Files in SSIS can be iterated using Foreach Loop Container or Script Task.

    • Use Foreach Loop Container to iterate through a list of files in a specified directory.

    • Set the Enumerator type to 'Foreach File Enumerator' and configure the necessary properties like file extension, file path, etc.

    • Alternatively, use a Script Task to programmatically iterate through files and perform custom actions.

  • Answered by AI
  • Q2. What is checkpoint in ssis
  • Ans. 

    Checkpoint in SSIS is a feature that allows packages to restart from a specific point in case of failure.

    • Checkpoints are used to save the state of the package at specific points during execution.

    • They help in resuming package execution from the last successful checkpoint in case of failure.

    • Checkpoints can be configured at the package level or at the task level.

    • They are useful in scenarios where long-running packages nee...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain about your project?
  • Q2. Explain about ssis expressions
  • Ans. 

    SSIS expressions are used to dynamically set property values at runtime in SQL Server Integration Services packages.

    • SSIS expressions are written using a combination of functions, operators, and constants.

    • Expressions can be used to set properties such as connection strings, file paths, and SQL queries.

    • Expressions can be used to make packages more flexible and reusable.

    • For example, an expression can be used to dynamicall...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. About splunk topics. Thry asked sbout alerts, reports snd dashboards
  • Q2. Unix commands and shell scripting and few scenarios
Round 2 - HR 

(1 Question)

  • Q1. Package discussion and about the shift
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basics of SQL and pl sql
  • Q2. About project tht you worked
Round 2 - Technical 

(1 Question)

  • Q1. Java ,SQL,linix question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to list files
  • Ans. 

    To list files, use command line tools like ls or dir.

    • Use 'ls' command in Unix/Linux systems to list files in a directory

    • Use 'dir' command in Windows systems to list files in a directory

    • Add options like -l for detailed listing or -a to show hidden files

    • Use wildcards like * to filter files based on patterns

  • Answered by AI
  • Q2. Diff between grep and egrep
  • Ans. 

    grep is a basic pattern matching tool, while egrep is an extended version with more advanced pattern matching capabilities.

    • grep is a basic command-line utility for searching plain-text data sets for lines that match a regular expression pattern.

    • egrep is an extended version of grep that supports more advanced regular expression patterns.

    • egrep is equivalent to grep -E, which enables extended regular expressions.

    • egrep is ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 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 - One-on-one 

(5 Questions)

  • Q1. What is internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where the pair will be stored.

    • If multiple key-value pairs hash to the same index, they are stored in a linked list at that index.

    • To retrieve a value...

  • Answered by AI
  • Q2. What is difference between hashmap and concurrent hashmap
  • Ans. 

    HashMap is not thread-safe while ConcurrentHashMap is thread-safe.

    • HashMap is not thread-safe and can lead to ConcurrentModificationException if modified while iterating.

    • ConcurrentHashMap allows concurrent modifications without the need for external synchronization.

    • ConcurrentHashMap achieves thread-safety by dividing the map into segments, allowing multiple threads to operate on different segments concurrently.

    • Concurren...

  • Answered by AI
  • Q3. Can we override main method in java
  • Ans. 

    No, main method in Java cannot be overridden.

    • Main method is a static method of a class and cannot be overridden.

    • Subclasses can have their own main method, but it will not be considered as the entry point of the program.

    • Example: public class SubClass extends MainClass { public static void main(String[] args) { // This is not the entry point of the program }}

  • Answered by AI
  • Q4. Write the command to find the hidden files in unix
  • Ans. 

    Use the 'ls' command with the '-a' flag to find hidden files in Unix.

    • Use the command 'ls -a' to list all files, including hidden files.

    • Hidden files in Unix start with a dot (.) before the file name.

    • Example: 'ls -a' will display all files, including hidden files.

  • Answered by AI
  • Q5. Write a command to replace a string in unix
  • Ans. 

    Use the sed command to replace a string in Unix

    • Use the following syntax: sed 's/original_string/new_string/g' filename

    • The 's' flag stands for substitute, 'g' flag stands for global (replace all occurrences)

    • Example: sed 's/hello/goodbye/g' file.txt

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For java production support please brush up Unix SQL and unix

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Depends on your skill
  • Q2. All technical questions related linux,Unix,SQL, oracle
Round 3 - Technical 

(2 Questions)

  • Q1. Linux,Unix,SQL, oracle, Jenkin, DEVOPS,AWS,hpsm,ITIL, service now
  • Q2. Depends on your skills
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - HR 

(2 Questions)

  • Q1. Generally checks the communication skills
  • Q2. About projects, college life,

Cognizant Interview FAQs

How many rounds are there in Cognizant Senior Product Support Engineer interview?
Cognizant interview process usually has 3 rounds. The most common rounds in the Cognizant interview process are Resume Shortlist, Technical and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k 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
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Cognizant Senior Product Support Engineer Salary
based on 5 salaries
₹9 L/yr - ₹13.2 L/yr
6% less than the average Senior Product Support Engineer Salary in India
View more details
Associate
72.4k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

Programmer Analyst
55.5k salaries
unlock blur

₹2.4 L/yr - ₹8 L/yr

Senior Associate
48.4k salaries
unlock blur

₹9 L/yr - ₹27.2 L/yr

Senior Processing Executive
28.8k salaries
unlock blur

₹1.8 L/yr - ₹9 L/yr

Technical Lead
17.6k salaries
unlock blur

₹5.9 L/yr - ₹24.2 L/yr

Explore more salaries
Compare Cognizant with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Accenture

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview