Upload Button Icon Add office photos

Filter interviews by

Nucsoft HR Executive Interview Questions and Answers

Updated 18 Apr 2024

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. About my past work, what i use to handle and how i use to handle.
  • Q2. Like the basic policies, HR role, referral policy, appraisal process

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and clear with your answers. Explain nicely when asked any question anything, if you don't know anything accept it and say you will learn.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Introduction and experience and knowledge .
Round 3 - One-on-one 

(1 Question)

  • Q1. Knowledge about the post applied for and experience .

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the JD and go study and prepare yourself for freshers for experience feel free to ask the concern person and believe in yourself .
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Can you describe your previous work experience?
  • Ans. 

    I have diverse experience in project management, team leadership, and strategic planning across various industries.

    • Led a team of 10 in a successful product launch, increasing sales by 30% within the first quarter.

    • Managed cross-functional projects, ensuring timely delivery and adherence to budget constraints.

    • Implemented a new training program that improved employee retention rates by 15%.

    • Collaborated with stakeholders t...

  • Answered by AI
  • Q2. What is your highest qualification?
  • Ans. 

    I hold a Master's degree in Business Administration, specializing in Human Resource Management.

    • Completed my MBA from XYZ University, focusing on HR strategies and organizational behavior.

    • Participated in various workshops on leadership and team dynamics during my studies.

    • Conducted a thesis on employee engagement, which was published in a reputable HR journal.

    • Earned a certification in Talent Management, enhancing my skil

  • Answered by AI
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 - Technical 

(2 Questions)

  • Q1. About my platform related
  • Q2. Abot my platform related
Round 3 - Coding Test 

UI design and crud operation tasks

Round 4 - HR 

(1 Question)

  • Q1. Salary discussion fully connected

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep trying , work smart
complete all rounds with your clam mind
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Basic DS and JS questions

Round 2 - Technical 

(1 Question)

  • Q1. JS and Cloud related questions
Round 3 - Technical 

(1 Question)

  • Q1. System design and cloud related questions

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

Interview Questionnaire 

2 Questions

  • Q1. Write a c++ program to implement the basic functions of queue using linked list and class?
  • Ans. 

    C++ program to implement queue using linked list and class

    • Create a class for queue and node

    • Implement enqueue, dequeue, and display functions

    • Use pointers to link nodes in the linked list

  • Answered by AI
  • Q2. Questions related to the projects .

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have good command over the language you chose and the tech stack you are working upon. You should be able to explain your role.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Mar 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Computer Networks, SQL, DBMS, aptitude questions on trains, boats , profit and loss. 2 coding questions. Total duration was 1.5 hrs.

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions based on projects and certifications mentioned in the resume. OOPs Time complexity based questions, basic algorithm logics like dijkstra's , sorting algorithms . Question in OS like threads and ...
Round 4 - Behavioral 

(1 Question)

  • Q1. Reversing a string, writing sql queries, how does fetching of information from web takes place. Why you want to join Truminds?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Assignment 

Fizz buzz question and array related

Round 2 - Technical 

(1 Question)

  • Q1. Basic react, javascript and one question to find duplicate.
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2022. There were 4 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 

Easy level questions on string, linked list and array

Round 3 - Technical 

(2 Questions)

  • Q1. Difference between TCP and UDP
  • Ans. 

    TCP is a connection-oriented protocol while UDP is connectionless.

    • TCP provides reliable, ordered, and error-checked delivery of data while UDP does not guarantee any of these.

    • TCP is slower but more reliable while UDP is faster but less reliable.

    • TCP is used for applications that require high reliability and accuracy such as email, file transfer, and web browsing while UDP is used for applications that require speed and ...

  • Answered by AI
  • Q2. Nibble swap program in C
  • Ans. 

    A nibble swap program in C

    • Nibble swap means swapping the 4-bit halves of a byte

    • Use bitwise operators to perform the swap

    • Example: unsigned char x = 0xAB; x = ((x & 0x0F) << 4) | ((x & 0xF0) >> 4);

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Reverse Linked List in C
  • Ans. 

    Reverse a linked list in C language.

    • Create three pointers: current, previous, and next.

    • Traverse the linked list and change the direction of the pointers.

    • Return the new head of the reversed linked list.

  • Answered by AI
  • Q2. Write an API call in C
  • Ans. 

    API call in C

    • Include the necessary header files

    • Create a URL string with the required parameters

    • Use the curl library to make the API call

    • Handle the response data appropriately

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of programming, operating system and networking

Skills evaluated in this interview

Nucsoft Interview FAQs

How many rounds are there in Nucsoft HR Executive interview?
Nucsoft interview process usually has 1 rounds. The most common rounds in the Nucsoft interview process are One-on-one Round.
How to prepare for Nucsoft HR Executive 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 Nucsoft. The most common topics and skills that interviewers at Nucsoft expect are HR Operations, Hiring, Talent Acquisition, HR and IT Recruitment.

Tell us how to improve this page.

Nucsoft HR Executive Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
Argusoft Interview Questions
4.6
 • 38 Interviews
JMR Infotech Interview Questions
4.3
 • 29 Interviews
PC Solutions Interview Questions
3.7
 • 16 Interviews
View all
Nucsoft HR Executive Salary
based on 5 salaries
₹3 L/yr - ₹3.2 L/yr
10% less than the average HR Executive Salary in India
View more details

Nucsoft HR Executive Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

3.0

Salary

4.0

Job security

3.0

Company culture

4.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
150 salaries
unlock blur

₹2 L/yr - ₹6.1 L/yr

Application Support Engineer
103 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Software Developer
32 salaries
unlock blur

₹2.8 L/yr - ₹6.8 L/yr

Senior Software Engineer
32 salaries
unlock blur

₹2.4 L/yr - ₹6.4 L/yr

Software Tester
29 salaries
unlock blur

₹2.2 L/yr - ₹6 L/yr

Explore more salaries
Compare Nucsoft with

PC Solutions

3.7
Compare

RNF Technologies

3.5
Compare

JMR Infotech

4.3
Compare

Hidden Brains InfoTech

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