Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by NeST Digital Team. If you also belong to the team, you can get access from here

NeST Digital Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

NeST Digital Senior Software Engineer Interview Questions and Answers for Experienced

Updated 14 Feb 2025

NeST Digital Senior Software Engineer Interview Experiences for Experienced

1 interview found

I applied via Naukri.com and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What do you mean by Selenium grid?
  • Ans. 

    Selenium grid is a tool used for running Selenium tests on multiple machines in parallel.

    • Selenium grid allows for distributed testing across multiple machines and browsers.

    • It consists of a hub and nodes, where the hub acts as a central point to control the test execution and the nodes are the machines where the tests are run.

    • Selenium grid helps to reduce the time required for running tests and increases the test covera...

  • Answered by AI
Round 2 - Coding Test 

Correct the mistake in the given code?

Round 3 - One-on-one 

(1 Question)

  • Q1. Associate Manager round

Interview Preparation Tips

Topics to prepare for NeST Digital Senior Software Engineer interview:
  • Automation Testing
  • Selenium
  • Core Java
Interview preparation tips for other job seekers - Relax and just answer to what you know.
.

Skills evaluated in this interview

Senior Software Engineer Jobs at NeST Digital

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Oracle.

Interview Preparation Tips

Interview preparation tips for other job seekers - I am 3 years experience guy in oracle platform.
As per my interview experience to crackr the job in clover is not tough.

If a candidate answered 7 out of 10,then that is enough to get a job.

Thank you.

I applied via Naukri.com and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is html and css
  • Ans. 

    HTML and CSS are markup languages used for creating and styling web pages.

    • HTML stands for HyperText Markup Language and is used for structuring content on a web page.

    • CSS stands for Cascading Style Sheets and is used for styling the appearance of a web page.

    • HTML uses tags to define elements like headings, paragraphs, images, and links.

    • CSS allows for customization of colors, fonts, layout, and other visual aspects of a w

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do hard hard work smartly

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. They specifically didn’t asked any questions by looking at my strong resume but just asked me if to come Hyderabad for training of a month

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are good in technical knowledge then it would be easy for you to get opportunity here at client site you will learn a lot as mostly you will be at your own, companies technical support is not very good so mostly you are on your own

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic oops concept. Code : linked list, deleting middle element in array.

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask questions about the project you are supposed to work on. Reality can be totally different from what you are expecting. In my case I was hired for Development team. But I got support with no coding at all.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Testing questions

Interview Questionnaire 

3 Questions

  • Q1. -React lifecycle?-Fragment vs React. Fragment? -React pure component?
  • Ans. 

    React lifecycle, Fragment vs React.Fragment, React.PureComponent

    • React lifecycle consists of mounting, updating, and unmounting phases

    • Fragment is a shorthand for React.Fragment, used to group multiple elements

    • React.PureComponent is a class component that implements shouldComponentUpdate method for performance optimization

  • Answered by AI
  • Q2. JavaScript hoisting?- Let, var and cont difference?
  • Ans. 

    JavaScript hoisting and differences between let, var and const.

    • Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Var declarations are hoisted to the top of their scope, while let and const declarations are not.

    • Var can be redeclared and reassigned, let can be reassigned but not redeclared, and const cannot be reassigned or redeclared.

    • Using const is recommend...

  • Answered by AI
  • Q3. Dofferemt ways to prevent rerendering of a child component in react?
  • Ans. 

    Prevent rerendering of a child component in React

    • Use shouldComponentUpdate() lifecycle method

    • Use React.memo() to memoize functional components

    • Use PureComponent instead of Component

    • Pass props as a callback function to avoid unnecessary re-renders

    • Use React.PureComponent for class components

    • Use React.memo() for functional components

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. It was related to some current working projects, roles and responsibilities and what some technical knowledge.
  • Q2. No one is respond after that first round, and during the call it was positive from interviewer. I have tried multiple times by mail and call but no one is responding.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 1.About collections 2. Database
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Mar 2023. There were 3 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 - Call discussion 

(1 Question)

  • Q1. Basic JavaScript-based questions which we can find by searching JavaScript interview questions on Google. A Quick QnA session via a call where I was not asked to ask any questions to the interviewer
Round 3 - Technical 

(2 Questions)

  • Q1. Normal discussion on JavaScript and ReactJs. One coding challenge where given an array ["abc", "Silent", "Code"]. Find the matching element when the user input is "bca". It should match "abc".
  • Q2. Solved it by looping through each element first. Split the string into an array to get access to each character. Using the .every() method checks whether each character of the string is present inside the ...
  • Ans. 

    The question asks about using .every() and .includes() methods to check if each character of a string is present in another string.

    • Loop through each element of the string

    • Split the string into an array to access each character

    • Use .every() method to check if each character is present in the user string

    • Use .includes() method to check if the character is present

  • Answered by AI

Interview Preparation Tips

Topics to prepare for NeoSOFT Senior Software Engineer interview:
  • Javascript
  • React.Js
  • CSS3

Skills evaluated in this interview

NeST Digital Interview FAQs

How many rounds are there in NeST Digital Senior Software Engineer interview for experienced candidates?
NeST Digital interview process for experienced candidates usually has 3 rounds. The most common rounds in the NeST Digital interview process for experienced candidates are Technical, Coding Test and One-on-one Round.
How to prepare for NeST Digital Senior Software Engineer interview for experienced candidates?
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 NeST Digital. The most common topics and skills that interviewers at NeST Digital expect are Python, C++, Agile, Debugging and Linux.
What are the top questions asked in NeST Digital Senior Software Engineer interview for experienced candidates?

Some of the top questions asked at the NeST Digital Senior Software Engineer interview for experienced candidates -

  1. What do you mean by Selenium gr...read more
  2. oops, a concept in js and one coding question then ask to reduce the time and s...read more

Tell us how to improve this page.

NeST Digital Senior Software Engineer Salary
based on 150 salaries
₹6.2 L/yr - ₹20 L/yr
19% less than the average Senior Software Engineer Salary in India
View more details

NeST Digital Senior Software Engineer Reviews and Ratings

based on 24 reviews

3.4/5

Rating in categories

2.8

Skill development

3.8

Work-life balance

3.2

Salary

2.5

Job security

3.1

Company culture

2.6

Promotions

3.0

Work satisfaction

Explore 24 Reviews and Ratings
Senior Software Engineer- Python

Kochi

5-8 Yrs

₹ 5.5-18 LPA

Senior Software Engineer- C++, QT/QML

Bangalore / Bengaluru

6-8 Yrs

₹ 10-13.5 LPA

Explore more jobs
Software Engineer
259 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Senior Software Engineer
150 salaries
unlock blur

₹6.2 L/yr - ₹20 L/yr

Lead Engineer
45 salaries
unlock blur

₹11.3 L/yr - ₹23 L/yr

Software Engineer Trainee
31 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Software Developer
22 salaries
unlock blur

₹2.6 L/yr - ₹9.5 L/yr

Explore more salaries
Compare NeST Digital with

ITC Infotech

3.6
Compare

3i Infotech

3.5
Compare

Sify Technologies

3.8
Compare

Microland

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