Upload Button Icon Add office photos

N+A

Compare button icon Compare button icon Compare

Filter interviews by

N+A Navision Functional Consultant Interview Questions, Process, and Tips

Updated 23 Mar 2025

Top N+A Navision Functional Consultant Interview Questions and Answers

N+A Navision Functional Consultant Interview Experiences

5 interviews found

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

Good and scoring with easy question

Round 2 - Technical 

(2 Questions)

  • Q1. Pillars of OPPs
  • Ans. 

    The Pillars of OPPs refer to the key components of Operations Performance and Productivity, including quality, cost, delivery, and flexibility.

    • Quality: Ensuring products or services meet customer expectations and standards.

    • Cost: Managing expenses and maximizing efficiency to reduce costs.

    • Delivery: Timely and reliable delivery of products or services to customers.

    • Flexibility: Ability to adapt to changing market demands ...

  • Answered by AI
  • Q2. Array Sorting using least time complexity
  • Ans. 

    Use quicksort algorithm for array sorting with least time complexity.

    • Implement quicksort algorithm for sorting array of strings

    • Choose a pivot element and partition the array into two sub-arrays based on the pivot

    • Recursively apply quicksort on the sub-arrays until the entire array is sorted

    • Time complexity of quicksort is O(n log n) on average

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and please speak slowly

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
  • Q1. BINARY SEARCH PRBLM
  • Q2. DYNAMIC PROGRAMMING PRBLM

Navision Functional Consultant Interview Questions Asked at Other Companies

Q1. what is the difference between bjt and fet?
asked in N+A
Q2. Array Sorting using least time complexity
asked in ePlus
Q4. Sell me the pen
asked in N+A
Q5. Pillars of OPPs
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response
Round 1 - One-on-one 

(1 Question)

  • Q1. Can you provide an introduction about yourself?
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is your strength

N+A interview questions for designations

 Software Engineer

 (4)

 Software Developer

 (4)

 Senior Software Engineer

 (2)

 Database Admin

 (1)

 Member Technical Staff

 (1)

 Junior SEO Executive

 (1)

 Network Analyst

 (1)

 Lead Engineer

 (1)

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

(2 Questions)

  • Q1. Explain framework
  • Ans. 

    Framework is a structure that provides guidelines, standards, and tools for developing software applications.

    • Framework provides a foundation for developers to build upon

    • It includes libraries, APIs, and tools to simplify development

    • Frameworks can be specific to a programming language or platform

    • Examples include .NET Framework, AngularJS, and Django

  • Answered by AI
  • Q2. Explain project
  • Ans. 

    The project involved implementing Navision ERP system for a company to streamline their financial and operational processes.

    • Analyzed the company's current processes and identified areas for improvement

    • Customized Navision to meet the company's specific needs

    • Provided training to employees on how to use the new system effectively

    • Ensured a smooth transition from the old system to Navision

    • Continued to provide support and ma

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Tell me your strength and weakness

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Who are you ?
  • Ans. 

    I am a Navision Functional Consultant with expertise in implementing and customizing Navision ERP solutions.

    • Experienced in analyzing business requirements and translating them into Navision functionalities

    • Skilled in configuring and customizing Navision modules such as finance, sales, and inventory

    • Proficient in conducting user training and providing post-implementation support

    • Familiar with Navision upgrades and integrat

  • Answered by AI
  • Q2. Why should we select you
  • Ans. 

    I have a strong background in Navision and a proven track record of successful implementations.

    • Extensive experience in Navision implementation and customization

    • Strong understanding of business processes and requirements

    • Proven ability to deliver projects on time and within budget

    • Excellent communication and problem-solving skills

    • Positive feedback from previous clients and employers

  • Answered by AI

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

Interview Questionnaire 

2 Questions

  • Q1. Check palindrome , anagram of string with O(n)
  • Ans. 

    To check palindrome and anagram of a string with O(n), use a hash table to store character frequencies.

    • Create a hash table to store the frequency of each character in the string.

    • For palindrome, check that no more than one character has an odd frequency.

    • For anagram, compare the hash tables of the two strings.

    • If the hash tables are equal, the strings are anagrams.

    • If the hash tables differ by only one character, the strin...

  • Answered by AI
  • Q2. Optimized solutions and core principles applied in OOPS
  • Ans. 

    Optimized solutions and core principles applied in OOPS

    • Encapsulation, Inheritance, Polymorphism, Abstraction are core principles of OOPS

    • Optimized solutions can be achieved through efficient algorithms and data structures

    • Design patterns like Singleton, Factory, Observer can also be used for optimized solutions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are looking for best possible solutions. and they are not using that in project then also they ask

Skills evaluated in this interview

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Hard

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an integer array containing numbers from 0 to (N - 2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number that appears twice in the array.

    • The duplicate number is always present in the given array.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Easy

  • Q1. 

    Bubble Sort Problem Statement

    Sort an unsorted array of non-negative integers using the Bubble Sort algorithm, which swaps adjacent elements if they are not in the correct order to sort the array in non-d...

  • Ans. 

    Bubble Sort is used to sort an array of non-negative integers in non-decreasing order by swapping adjacent elements if they are not in the correct order.

    • Iterate through the array and compare adjacent elements, swapping them if they are in the wrong order.

    • Repeat this process until the array is sorted in non-decreasing order.

    • Time complexity of Bubble Sort is O(n^2) in worst case.

    • Example: For input [6, 2, 8, 4, 10], the o

  • Answered by AI
Round 3 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Unweighted Graph Shortest Path Problem

    You are tasked with finding the shortest path between two houses in the city of Ninjaland, represented as an unweighted graph. The city has N houses numbered from 1 ...

  • Ans. 

    Find the shortest path between two houses in a city represented as an unweighted graph.

    • Use breadth-first search (BFS) algorithm to find the shortest path in an unweighted graph.

    • Start BFS from the source house and keep track of the shortest path to each house.

    • Once the destination house is reached, backtrack to find the shortest path.

    • Consider using a queue data structure to implement BFS efficiently.

  • Answered by AI
Round 4 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria7Morgan Stanley interview preparation:Topics to prepare for the interview - Java , spring, aws,azure, Algorithm, computer Architecture, compiler designTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : online resources
Tip 2 : cracking the coding interview by Gayle laykemann this is one of the best book for learning the concept at the initial level. Start practicing the approaches mention in the book once done apply the same to similar level pattern questions.
Tip 3 : geeks for geeks start from school level and then move towards easy medium and hard once done practice the previous year questions

Application resume tips for other job seekers

Tip 1 : precise clear concise and well written 
Tip 2 : mentions the skills sets along with the projects

Final outcome of the interviewSelected

Skills evaluated in this interview

Analyst Interview Questions & Answers

UBS user image Anonymous

posted on 17 Oct 2021

I applied via Company Website and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. I was asked mostly about my profile and there expectations.

Interview Preparation Tips

Interview preparation tips for other job seekers - There were two technical rounds and it was of 30 - 40 mins long and interviewer was friendly and made me confortable with them.

Analyst Interview Questions & Answers

UBS user image Anonymous

posted on 22 Sep 2021

I applied via Referral and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Do you know about hedge funds?
  • Ans. 

    Hedge funds are investment funds that use various strategies to generate high returns for their investors.

    • Hedge funds are typically only available to accredited investors due to their high-risk nature.

    • They often use leverage and derivatives to amplify returns.

    • Hedge funds can invest in a wide range of assets, including stocks, bonds, commodities, and currencies.

    • Some famous hedge funds include Bridgewater Associates, Ren...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Show good interest in learning new things

N+A Interview FAQs

How many rounds are there in N+A Navision Functional Consultant interview?
N+A interview process usually has 1-2 rounds. The most common rounds in the N+A interview process are HR, One-on-one Round and Aptitude Test.
What are the top questions asked in N+A Navision Functional Consultant interview?

Some of the top questions asked at the N+A Navision Functional Consultant interview -

  1. Array Sorting using least time complex...read more
  2. Pillars of O...read more
  3. explain framew...read more

Tell us how to improve this page.

N+A Navision Functional Consultant Interview Process

based on 13 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 575 Interviews
Citicorp Interview Questions
3.7
 • 573 Interviews
Bajaj Finserv Interview Questions
4.0
 • 532 Interviews
HSBC Group Interview Questions
3.9
 • 487 Interviews
Xyz Company Interview Questions
3.8
 • 460 Interviews
American Express Interview Questions
4.2
 • 365 Interviews
BNY Interview Questions
3.9
 • 347 Interviews
UBS Interview Questions
3.9
 • 338 Interviews
Morgan Stanley Interview Questions
3.6
 • 293 Interviews
View all
N+A Navision Functional Consultant Salary
based on 45 salaries
₹19.6 L/yr - ₹41.2 L/yr
8% more than the average Navision Functional Consultant Salary in India
View more details

N+A Navision Functional Consultant Reviews and Ratings

based on 4 reviews

4.0/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.9

Salary

3.7

Job security

3.9

Company culture

3.9

Promotions

3.7

Work satisfaction

Explore 4 Reviews and Ratings
fresher
2.1k salaries
unlock blur

₹0.5 L/yr - ₹5 L/yr

Software Engineer
332 salaries
unlock blur

₹1.3 L/yr - ₹9 L/yr

Software Developer
288 salaries
unlock blur

₹1 L/yr - ₹9.8 L/yr

Freelancer
186 salaries
unlock blur

₹1.5 L/yr - ₹9.9 L/yr

Assistant Manager
169 salaries
unlock blur

₹2.8 L/yr - ₹11 L/yr

Explore more salaries
Compare N+A with

Bajaj Finserv

4.0
Compare

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

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