Upload Button Icon Add office photos

N+A

Compare button icon Compare button icon Compare
3.8

based on 415 Reviews

Filter interviews by

N+A ERP Developer Interview Questions, Process, and Tips

Updated 4 Feb 2024

N+A ERP Developer Interview Experiences

1 interview found

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 

(5 Questions)

  • Q1. What is programming language?
  • Ans. 

    A programming language is a formal language used to write instructions for a computer to perform specific tasks.

    • Programming languages are used to create software applications and systems.

    • They provide a set of rules and syntax for writing code.

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

  • Answered by AI
  • Q2. What is python used for
  • Ans. 

    Python is a versatile programming language used for web development, data analysis, artificial intelligence, and automation.

    • Python is used for web development using frameworks like Django and Flask

    • Python is widely used for data analysis and scientific computing with libraries like NumPy and Pandas

    • Python is used for artificial intelligence and machine learning with libraries like TensorFlow and PyTorch

    • Python is used for...

  • Answered by AI
  • Q3. Is python or c++ better
  • Q4. What is control statements
  • Ans. 

    Control statements are used to control the flow of execution in a program.

    • Control statements determine which sections of code are executed based on certain conditions.

    • They include if-else statements, switch statements, and loops.

    • Examples: if(condition), else, switch(expression), for loop, while loop.

  • Answered by AI
  • Q5. What is most popular programming languages
  • Ans. 

    The most popular programming languages are Java, Python, and JavaScript.

    • Java is widely used for enterprise applications and Android development.

    • Python is popular for its simplicity and versatility, used in web development, data analysis, and artificial intelligence.

    • JavaScript is essential for web development, enabling interactive and dynamic web pages.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were three coding questions.

Round 2 - Technical 

(5 Questions)

  • Q1. Could you provide a thorough explanation of the project?
  • Q2. OOps Concepts and question from the technical subjects
  • Q3. Why Spring Boot
  • Q4. JWT Authentication
  • Q5. Docker and Kubernetes
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. This was for internship. The first questions were 10 questions based on guessing output of c program
  • Q2. 2 coding questions with easy to medium difficulty based on strings and mathematical knowledge
Round 2 - Interview 

(1 Question)

  • Q1. This was a virtual interview round which had basic HR type questions.
Round 3 - Hackathon 

(1 Question)

  • Q1. This was code for good hackathon
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Simple questions asked related to web forms

Interview Preparation Tips

Interview preparation tips for other job seekers - As soon as the interviewer joined, there was so much noise in the background that I couldn't understand what they were asking. It was so loud that I could hardly hear anything. This is not a professional way to conduct interview. The interview lasted hardly 10 minutes and it was very awkward for me. I couldn't even understand what I was saying, and I couldn't hear what they were saying either.
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 Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Write an API to fetch the id and JSON from the client.
  • Ans. 

    Create an API to fetch id and JSON from the client.

    • Create a RESTful API endpoint that accepts requests from the client

    • Use a GET request to fetch the id and JSON data from the client

    • Implement error handling for invalid requests or missing data

  • Answered by AI
  • Q2. Find forth highest salary from List using java 8.
  • Ans. 

    Use Java 8 stream to find the forth highest salary from a List.

    • Use stream() method to convert the List to a stream.

    • Use distinct() method to remove duplicates.

    • Use sorted() method to sort the salaries in ascending order.

    • Use skip() method to skip the first three highest salaries.

    • Use findFirst() method to get the forth highest salary.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Microservice Architecture questions
  • Q2. Spring Boot Annotations
Round 3 - HR 

(2 Questions)

  • Q1. Salary Expectation
  • Q2. Basic HR questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Project Architecture
Round 2 - Technical 

(1 Question)

  • Q1. Informatica tech questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Question Related to the DP and the Graph

Round 2 - Technical 

(2 Questions)

  • Q1. Kth Max Element in a Array
  • Ans. 

    Find the Kth maximum element in an array of strings.

    • Sort the array in descending order.

    • Return the element at index K-1.

  • Answered by AI
  • Q2. Coin Change and optimization through DP
  • Ans. 

    Coin change problem can be solved using dynamic programming to find the minimum number of coins needed to make a certain amount of change.

    • Use dynamic programming to build up solutions for smaller subproblems

    • Start by initializing an array to store the minimum number of coins needed for each amount from 0 to the target amount

    • Iterate through each coin denomination and update the array with the minimum number of coins need

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Project include in your Resume
  • Q2. HR common question

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Two sum problem DSA fromleetcode

Round 2 - Technical 

(3 Questions)

  • Q1. Event Loop, how does event loop work.
  • Q2. Lib UV, explain the function of libuv
  • Ans. 

    Libuv is a multi-platform support library with a focus on asynchronous I/O.

    • Provides event loop, networking, and file system access APIs

    • Supports asynchronous operations for handling I/O events efficiently

    • Used in Node.js for handling non-blocking I/O operations

  • Answered by AI
  • Q3. Async programming in JS
  • Ans. 

    Async programming in JS allows for non-blocking operations, improving performance and user experience.

    • Use async/await to write asynchronous code in a synchronous manner

    • Promises are a common way to handle asynchronous operations

    • Callbacks can also be used for async programming, but can lead to callback hell

    • Utilize setTimeout and setInterval for delayed and repeated tasks

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

MCQ test consisting of 70 mcqs in 75 minutes from aptitude english and cs fundamentals. If cleared next paper 2 coding qs medium level

Round 2 - Technical 

(2 Questions)

  • Q1. Two sum leetcode problem
  • Q2. What problems you faced in your project
  • Ans. 

    I faced challenges with integrating third-party APIs and debugging complex logic.

    • Difficulty in understanding and implementing third-party APIs

    • Issues with data synchronization between different systems

    • Troubleshooting complex logic errors

    • Managing dependencies and version conflicts

    • Time constraints affecting problem-solving

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

DP graphs strings it was good

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linkded list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the list, updating pointers to reverse the direction

    • Return the new head of the reversed list

  • Answered by AI
  • Q2. Print fibonacci series
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with two variables initialized to 0 and 1

    • Loop through desired number of iterations, adding the previous two numbers to get the next number

    • Print or store each number in the series

  • Answered by AI

Skills evaluated in this interview

N+A Interview FAQs

How many rounds are there in N+A ERP Developer interview?
N+A interview process usually has 1 rounds. The most common rounds in the N+A interview process are Technical.
What are the top questions asked in N+A ERP Developer interview?

Some of the top questions asked at the N+A ERP Developer interview -

  1. what is most popular programming langua...read more
  2. what is programming langua...read more
  3. what is python used ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Bharti Airtel Interview Questions
4.0
 • 817 Interviews
Wells Fargo Interview Questions
3.9
 • 560 Interviews
Citicorp Interview Questions
3.7
 • 560 Interviews
ITC Interview Questions
3.9
 • 538 Interviews
View all

N+A ERP Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

-

Skill development

-

Work-life balance

-

Salary

-

Job security

-

Company culture

-

Promotions

-

Work satisfaction

Explore 1 Review and Rating
fresher
2.1k salaries
unlock blur

₹0.6 L/yr - ₹7 L/yr

Software Engineer
332 salaries
unlock blur

₹1.1 L/yr - ₹10 L/yr

Software Developer
274 salaries
unlock blur

₹1 L/yr - ₹8 L/yr

Freelancer
196 salaries
unlock blur

₹1 L/yr - ₹9.8 L/yr

Assistant Manager
177 salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Explore more salaries
Compare N+A with

Reliance Industries

4.0
Compare

Tata Group

4.2
Compare

Adani Group

3.9
Compare

Hindustan Unilever

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