Upload Button Icon Add office photos

Filter interviews by

Nehish Senior Product Support Engineer Interview Questions and Answers

Updated 27 Dec 2024

Nehish Senior Product Support Engineer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About the infra
  • Q2. What can you tell me about technology in detail?
  • Ans. 

    Technology encompasses a wide range of tools, systems, and processes used to solve problems and achieve goals.

    • Technology includes hardware, software, networks, and telecommunications.

    • It is constantly evolving and improving to meet the needs of users.

    • Examples of technology include smartphones, computers, artificial intelligence, and cloud computing.

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

(1 Question)

  • Q1. Can you provide details about the case study?
  • Ans. 

    The case study involved troubleshooting a complex technical issue for a high-profile client.

    • Identifying the root cause of the issue

    • Collaborating with cross-functional teams to find a solution

    • Implementing and testing the solution

    • Providing ongoing support and monitoring for any further issues

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Asking about office location and Desired salary

Interview questions from similar companies

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 experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was Easy to medium . overall good

Round 2 - Coding Test 

It was Medium to tough level

Round 3 - One-on-one 

(2 Questions)

  • Q1. What is fifo lifo
  • Ans. 

    FIFO (First In, First Out) and LIFO (Last In, First Out) are inventory management methods.

    • FIFO: Items that are added first are the first to be removed. Like a queue.

    • LIFO: Items that are added last are the first to be removed. Like a stack.

  • Answered by AI
  • Q2. Whole data structure concepts
Round 4 - HR 

(2 Questions)

  • Q1. What do you want to change in this country if you get a chance
  • Ans. 

    I would focus on improving access to quality education for all citizens.

    • Implementing policies to ensure equal opportunities for education

    • Investing in infrastructure and resources for schools in underserved areas

    • Providing scholarships and financial aid for students from low-income families

    • Promoting vocational training programs to address skills gaps in the workforce

  • Answered by AI
  • Q2. I don't remember
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
-
Process Duration
-
Result
Not Selected

I applied via Naukri.com

Round 1 - One-on-one 

(2 Questions)

  • Q1. Right now didn't any interview.kindly arrange a interview.
  • Q2. No I didn't not received any interview process.

Interview Preparation Tips

Interview preparation tips for other job seekers - I have good experience on the SQL,PL SQL, Oracle SQL.I have 8 yrs experience on the solution process.kindly arrange Interview process.
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:
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 

(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
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn

Round 1 - Aptitude Test 

Logical and reasoning topics

Round 2 - HR 

(1 Question)

  • Q1. Question to check your communication skills, some technical questions related to respective degree
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - 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
Not Selected

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is docker?
  • Ans. 

    Docker is a platform for developing, shipping, and running applications in containers.

    • Docker allows you to package an application and its dependencies into a standardized unit called a container.

    • Containers are lightweight, portable, and isolated environments that can run on any machine with Docker installed.

    • Docker simplifies the process of managing and scaling applications by providing a consistent environment across d...

  • Answered by AI
  • Q2. Docker architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - First round was online assessment based on linux , networking and networking questions .
In second round , had a interview on devops tools like docker , kubernetes, github,terraform.

Skills evaluated in this interview

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,

Nehish Interview FAQs

How many rounds are there in Nehish Senior Product Support Engineer interview?
Nehish interview process usually has 3 rounds. The most common rounds in the Nehish interview process are One-on-one Round and HR.
What are the top questions asked in Nehish Senior Product Support Engineer interview?

Some of the top questions asked at the Nehish Senior Product Support Engineer interview -

  1. What can you tell me about technology in deta...read more
  2. Can you provide details about the case stu...read more
  3. About the in...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Senior Technical Consultant
6 salaries
unlock blur

₹10.6 L/yr - ₹26.7 L/yr

Technical Consultant
5 salaries
unlock blur

₹9 L/yr - ₹16.5 L/yr

Site Reliability Engineer
5 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Associate Consultant
4 salaries
unlock blur

₹4 L/yr - ₹6 L/yr

Associate Software Developer
4 salaries
unlock blur

₹3.5 L/yr - ₹4.4 L/yr

Explore more salaries
Compare Nehish with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Reliance Industries

4.0
Compare

Tata Group

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