Upload Button Icon Add office photos
Engaged Employer

i

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

Nash Industries Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 372 Reviews

Filter interviews by

Nash Industries Software Engineer Interview Questions and Answers

Updated 25 Sep 2023

Nash Industries Software Engineer Interview Experiences

1 interview found

Software Engineer Interview Questions & Answers

user image Anjali Dubey

posted on 25 Sep 2023

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

I applied via campus placement at Institute of Management Studies (IMS), Ghaziabad and was interviewed in Aug 2023. 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 - Coding Test 

They asked basic programs, cloud computing, computer networking

Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to join company? , how do you manage your expense of home in this salary amount?
  • Q2. Introduce yourself, strength, weakness, hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do everything with confidence, don't get stressed and you will easily pass the interview.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

Aptitude test covering all technical questions

Round 3 - Technical 

(1 Question)

  • Q1. Profile related technical
Round 4 - Behavioral 

(2 Questions)

  • Q1. Salary negotiation and policy brief
  • Q2. Salary negotiation and policy brief given

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best. Do not panic. Give calmly your hundred percent.
Round 1 - Technical 

(1 Question)

  • Q1. They shared the screen an given the logic to write c# program fraction number divided by zero and thrown a issue if denominator is 0.

Interview Preparation Tips

Interview preparation tips for other job seekers - I think the round has been scheduled as assessment before technical. So that's why there is no guiltiness for employees to write code in front of them.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Questions were asked on Recursive programming
  • Q2. What is the output of this? static void Main(string[] args) { DivideNumber(233) } static void DivideNumber(int n) { if(n>=10) { DivideNumber(n/10); } Console.Write(n/10) }
  • Ans. 

    The output will be 23323

    • The DivideNumber method recursively divides the input number by 10 until it is less than 10

    • The Console.Write statement prints the result of n/10 each time the method is called

  • Answered by AI
  • Q3. Write Code If Input is 123, output should be "One Hundred Twenty Three";
  • Ans. 

    Convert numeric input to words in English

    • Break down the input number into hundreds, tens, and ones place

    • Use a dictionary or array to map numbers to their corresponding words

    • Handle special cases like teens and tens separately

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Threads vs process
  • Ans. 

    Threads are lightweight processes within a single process, sharing memory space, while processes are independent instances of a program with their own memory space.

    • Threads share memory space within a process, allowing for efficient communication and data sharing.

    • Processes have their own memory space, making them more isolated and secure.

    • Threads are faster to create and switch between compared to processes.

    • Processes are...

  • Answered by AI
  • Q2. Thread synchronization program using semaphore/mutex
  • Ans. 

    Thread synchronization using semaphore/mutex in programming

    • Use semaphores to control access to shared resources among multiple threads

    • Mutex can be used to ensure only one thread can access a resource at a time

    • Implement a program where threads wait for a semaphore signal before accessing a shared resource

  • Answered by AI

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. They shared the screen an given the logic to write c# program fraction number divided by zero and thrown a issue if denominator is 0.

Interview Preparation Tips

Interview preparation tips for other job seekers - I think the round has been scheduled as assessment before technical. So that's why there is no guiltiness for employees to write code in front of them.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Given some problem statemts and asked to write the pseudo code,
  • Q2. What is Async and Await.
  • Ans. 

    Async and Await are keywords in JavaScript used to handle asynchronous operations in a synchronous manner.

    • Async is used to define a function as asynchronous, allowing it to run in the background without blocking the main thread.

    • Await is used to pause the execution of an async function until a Promise is settled, and then resumes the function with the resolved value.

    • Async functions always return a Promise, which allows ...

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

Aptitude followed by core C++ questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. What are the expectations
  • Ans. 

    Expectations for a Senior Software Engineer

    • Strong technical skills and expertise in relevant programming languages and technologies

    • Ability to lead and mentor junior team members

    • Experience in designing and implementing complex software systems

    • Excellent problem-solving and analytical skills

    • Strong communication and collaboration skills

  • Answered by AI
  • Q2. Why you want to join
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Technical assesment was there in first round

Round 2 - One-on-one 

(1 Question)

  • Q1. Interview with national manager, CTO and fellow developer
Round 3 - HR 

(1 Question)

  • Q1. Meeting with regional head of IT department
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Mar 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. NodeJS event loop
  • Q2. What isClosure explain with example
  • Ans. 

    A closure is a function that has access to its own scope, as well as the outer function's scope.

    • Closure allows a function to access variables from its outer function even after the outer function has finished executing.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

    • When innerFunction is called, it can still access outerVar even though outerF

  • Answered by AI

Nash Industries Interview FAQs

How many rounds are there in Nash Industries Software Engineer interview?
Nash Industries interview process usually has 3 rounds. The most common rounds in the Nash Industries interview process are Resume Shortlist, Coding Test and HR.
How to prepare for Nash Industries Software Engineer 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 Nash Industries. The most common topics and skills that interviewers at Nash Industries expect are ASP.Net, C#, CSS, HTML and Javascript.

Tell us how to improve this page.

Nash Industries Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Nash Industries Software Engineer Salary
based on 7 salaries
₹2.6 L/yr - ₹10 L/yr
29% less than the average Software Engineer Salary in India
View more details
Quality Engineer
129 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Production Engineer
84 salaries
unlock blur

₹2 L/yr - ₹5.5 L/yr

Graduate Engineer Trainee (Get)
65 salaries
unlock blur

₹2 L/yr - ₹3.2 L/yr

Engineer
55 salaries
unlock blur

₹2.2 L/yr - ₹5.2 L/yr

NPD Engineer
53 salaries
unlock blur

₹2.2 L/yr - ₹5.2 L/yr

Explore more salaries
Compare Nash Industries with

Tata Group

4.2
Compare

Reliance Industries

4.0
Compare

Aditya Birla Group

4.1
Compare

Mahindra & Mahindra

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