Upload Button Icon Add office photos
Premium Employer

i

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

NEC Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

NEC National Sales Manager Interview Questions and Answers

Updated 13 Aug 2024

NEC National Sales Manager Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Total experience
  • Q2. How good are you inexcel
  • Ans. 

    I am highly proficient in Excel with advanced skills in data analysis, reporting, and automation.

    • Advanced knowledge of formulas, functions, and pivot tables

    • Experience in creating complex spreadsheets for sales forecasting and analysis

    • Proficient in data visualization using charts and graphs

    • Ability to automate tasks using macros and VBA

    • Familiarity with data manipulation and cleansing techniques

  • Answered by AI

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

Round 1 - Technical 

(2 Questions)

  • Q1. Just about pas experiance in industry
  • Q2. Just about technical know how

Interview Preparation Tips

Interview preparation tips for other job seekers - Start to connect with right people in organization

National Sales Manager Interview Questions Asked at Other Companies

Q1. Capacity of solar panel , how it works, use of EVA films and futu ... read more
Q2. Is there any PF , Insurance n other allowance n incentive ?
Q3. Can you get candidates at ZSM, RBM and AM level
Q4. WHAT DO YOU THINK ABOUT VETERINARY PHARMA GROWTH IN THE NEXT 10 Y ... read more
Q5. How to handle situation where you don't have authority but yet yo ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Most questions were on Quantitative Aptitude

Round 2 - Coding Test 

It was easy to medium

I was interviewed before Sep 2016.

Interview Preparation Tips

Round: Group Discussion
Experience: Interview was scheduled in Grab Job consultancy. In that, a class room, where we all asked to sit and interviewer was sitting in front and asked to speak one by one on the topic traffic situation in Hyderabad.
Tips: Just speak once two to three lines. Don't rush to speak. Take ur time and don't try speak repeatedly.
Duration: 35 minutes

Round: Technical Interview
Experience: System based test. Easy question from java , c, data structure.

Round: HR Interview
Experience: Not held because already we got too late.

Skills: Proficiency In English, Basic Coding
College Name: Medak College of engineering

I was interviewed in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Oops concepts in Java?
  • Ans. 

    Oops concepts in Java

    • Encapsulation - hiding implementation details

    • Inheritance - reusing code and creating parent-child relationships

    • Polymorphism - multiple forms of a method or object

    • Abstraction - creating abstract classes and interfaces

    • Example: Encapsulation - using private variables and public methods

    • Example: Inheritance - creating a subclass that inherits from a superclass

    • Example: Polymorphism - using method overloa...

  • Answered by AI
  • Q2. Altering columns in Databases?
  • Ans. 

    Altering columns in databases involves modifying the structure of a table by adding, deleting or modifying columns.

    • Use ALTER TABLE statement to modify columns

    • Add new columns using ADD COLUMN

    • Delete columns using DROP COLUMN

    • Modify columns using MODIFY COLUMN

    • Changing column data type may result in data loss

  • Answered by AI
  • Q3. Asked some queries in SQL
  • Q4. Reversing a number in java?
  • Ans. 

    Reversing a number in Java

    • Convert the number to a string

    • Use StringBuilder to reverse the string

    • Convert the reversed string back to a number

  • Answered by AI
  • Q5. Extracting words from a line in java?
  • Ans. 

    To extract words from a line in Java, split the line using whitespace as delimiter.

    • Use the split() method of String class

    • Pass the whitespace regex as argument to split() method

    • Iterate over the resulting array to get individual words

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Started with the question "Tell me about yourself". Asked me about Core Java. Asked to solve some questions related to Java and SQL.
Tips: Be prepared with high knowledge in Java, Data Structures and SQL.

Skills: Java Programming, Data Strrutures, SQL
College Name: IIITDM Jabalpur

Skills evaluated in this interview

I applied via Referral and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What did you asked?

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview wanted to test about person knowledge and communication skills. Most of the questions asked to they subject in interview. Person details.
Thanks you

I applied via Naukri.com and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Easy interview, be strong with the basics and you'll be through

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics very well

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. C++ oops concepts
  • Q2. Early and late binding
  • Q3. Copy constructors

Interview Preparation Tips

Interview preparation tips for other job seekers - Job profile was software developer for c++

I applied via Naukri.com and was interviewed in Oct 2019. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. I had been aksed tricky questions
  • Q2. I gave answers of all.

Interview Preparation Tips

Interview preparation tips for other job seekers - Mam it was quite good

Interview Questionnaire 

10 Questions

  • Q1. You are given a string and a number.Count the no of ‘-’ characters in the string and return 1 if the count is equal to the number given or else return 0
  • Ans. 

    Count the number of '-' characters in a string and return 1 if it matches the given number, else return 0.

    • Use a loop to iterate through each character in the string and count the number of '-' characters.

    • Compare the count with the given number and return 1 if they match, else return 0.

    • Handle edge cases such as empty string or negative number input.

  • Answered by AI
  • Q2. Write the functions to create a stack and to delete a node from the stack
  • Ans. 

    Functions to create and delete nodes in a stack

    • To create a stack, initialize a top pointer to null

    • To push a node, create a new node and set its next to the current top, then set top to the new node

    • To pop a node, set top to its next and return the popped node

    • To delete the stack, pop all nodes until top is null

  • Answered by AI
  • Q3. Write the code for producer-consumer problem using mutex
  • Ans. 

    Code for producer-consumer problem using mutex

    • Create a shared buffer with a fixed size

    • Create a mutex to control access to the buffer

    • Create a semaphore to keep track of the number of items in the buffer

    • Create a producer thread that adds items to the buffer

    • Create a consumer thread that removes items from the buffer

    • Use mutex to lock the buffer while adding or removing items

    • Use semaphore to signal when the buffer is full o

  • Answered by AI
  • Q4. Differences between Mutex and Semaphore. Why do we need Mutex if we have Semaphores
  • Ans. 

    Mutex and Semaphore are synchronization primitives used in multi-threaded environments.

    • Mutex is used to provide mutual exclusion to a shared resource, allowing only one thread to access it at a time.

    • Semaphore is used to control access to a shared resource, allowing multiple threads to access it at a time.

    • Mutex is binary, meaning it has only two states - locked and unlocked, while Semaphore can have multiple states.

    • Mute...

  • Answered by AI
  • Q5. Explain the concept of virtual addressing and the allocation of virtual addresses during the execution of program
  • Ans. 

    Virtual addressing is a memory management technique that allows a process to use a range of memory addresses independent of physical memory.

    • Virtual addresses are mapped to physical addresses by the memory management unit (MMU)

    • Virtual addresses are allocated to a process during its execution

    • Virtual addressing allows for efficient use of physical memory by allowing multiple processes to share the same physical memory

    • Exam...

  • Answered by AI
  • Q6. What is deadlock? how to prevent deadlock?
  • Ans. 

    Deadlock is a situation where two or more processes are unable to proceed because they are waiting for each other to release resources.

    • Prevent deadlock by using a proper resource allocation strategy

    • Avoid holding onto resources for too long

    • Use timeouts to release resources if they are not being used

    • Implement a deadlock detection and recovery mechanism

    • Avoid circular wait by imposing a total ordering of all resource types

  • Answered by AI
  • Q7. Write a program to find the duplicate in the array(only one duplicate is present in the array)?
  • Ans. 

    Program to find the only duplicate in an array

    • Create a hash set to store elements as they are encountered

    • If an element is already in the hash set, it is a duplicate

    • Return the duplicate element

  • Answered by AI
  • Q8. Consider we have large amount of physical memory.Do we still need virtual memory? What is the use of paging in that situation
  • Ans. 

    Virtual memory is still needed even with large physical memory. Paging helps manage memory efficiently.

    • Virtual memory allows for larger programs to run than physical memory can handle

    • Paging helps manage memory efficiently by swapping out unused pages to disk

    • Virtual memory also allows for memory protection and sharing between processes

    • Examples of programs that require virtual memory include video editing software and la

  • Answered by AI
  • Q9. How do you find the middle of the linked list?
  • Ans. 

    To find the middle of a linked list, use two pointers - one moving at twice the speed of the other.

    • Initialize two pointers - slow and fast

    • Move the slow pointer one step at a time and the fast pointer two steps at a time

    • When the fast pointer reaches the end of the list, the slow pointer will be at the middle

  • Answered by AI
  • Q10. Time complexity of building a heap using linked list and arrays
  • Ans. 

    Time complexity of building a heap using linked list and arrays

    • Building a heap using linked list takes O(nlogn) time complexity

    • Building a heap using arrays takes O(n) time complexity

    • Linked list implementation is slower than array implementation

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The questions are easy to crack provided you understand the questions well.
Total Questions: 1

Round: Technical Interview
Experience: They stressed mostly on the OS during my interview mainly on Semaphores,mutex,monitors,Deadlocks,virtual memory concepts,virtual addressing concepts,paging and segmentation etc. One question for sure on Binary trees,linked lists,stacks or queues.

Skill Tips: Operating systems is very important.
Skills: Algorithms, Operating Systems, Database Management, Computer Networks
College Name: NA

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

NEC Interview FAQs

How many rounds are there in NEC National Sales Manager interview?
NEC interview process usually has 1 rounds. The most common rounds in the NEC interview process are Technical and One-on-one Round.
What are the top questions asked in NEC National Sales Manager interview?

Some of the top questions asked at the NEC National Sales Manager interview -

  1. just about pas experiance in indus...read more
  2. just about technical know ...read more

Recently Viewed

INTERVIEWS

NEC

No Interviews

INTERVIEWS

Crisil

No Interviews

INTERVIEWS

Credit Information Bureau

No Interviews

INTERVIEWS

Brillio

No Interviews

INTERVIEWS

Crisil

No Interviews

INTERVIEWS

PI Industries

No Interviews

INTERVIEWS

PI Industries

No Interviews

INTERVIEWS

Brillio

No Interviews

INTERVIEWS

PI Industries

No Interviews

SALARIES

NEC

Tell us how to improve this page.

NEC National Sales Manager Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Nagarro Interview Questions
4.0
 • 778 Interviews
Samsung Interview Questions
3.9
 • 561 Interviews
EPAM Systems Interview Questions
3.7
 • 538 Interviews
Cisco Interview Questions
4.1
 • 397 Interviews
Synechron Interview Questions
3.6
 • 363 Interviews
Movate Interview Questions
3.3
 • 254 Interviews
Cybage Interview Questions
3.8
 • 196 Interviews
View all

NEC National Sales Manager Reviews and Ratings

based on 2 reviews

4.5/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

3.0

Work satisfaction

Explore 2 Reviews and Ratings
Member Technical Staff
365 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
305 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Member of Technical Staff
190 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
172 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Lead
161 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare NEC with

Hitachi

4.0
Compare

Toshiba

4.0
Compare

Panasonic

4.0
Compare

Sony

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