Upload Button Icon Add office photos

ITI

Compare button icon Compare button icon Compare

Filter interviews by

ITI HR Manager Interview Questions and Answers

Updated 29 Jan 2024

ITI HR Manager Interview Experiences

1 interview found

HR Manager Interview Questions & Answers

user image Anonymous

posted on 29 Jan 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Company Website and was interviewed before Jan 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About HR & Industrial Relations ?

Interview Preparation Tips

Interview preparation tips for other job seekers - It was panel interview process and structured.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Basic screening was done
  • Q2. Details about personal and professional experience
Round 2 - One-on-one 

(2 Questions)

  • Q1. What you can bring to the table
  • Ans. 

    I bring a wealth of experience in HR management, strong leadership skills, and a passion for employee development.

    • Over 10 years of experience in HR management

    • Proven track record of successfully leading teams and implementing HR initiatives

    • Passionate about employee development and creating a positive work culture

    • Strong communication and interpersonal skills

    • Ability to adapt to changing environments and handle multiple pr...

  • Answered by AI
  • Q2. In past what activities and tasks you have done as a project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be real, show your learning attitude. Think from a long term perspective
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic question they will ask regarding your post
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Regarding previous work and experiance
  • Q2. Career objectives
  • Q3. Accounting entries regarding debtors and creditors

I applied via Naukri.com and was interviewed before Jul 2021. There were 2 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 - Technical 

(1 Question)

  • Q1. Asked me about SAP some discussed about my current work profile.

Interview Preparation Tips

Interview preparation tips for other job seekers - My interviewer was my superior boss it was for Finance Dept. & discussed me about those things which profile was not given to me after joining STL & started me harrashing after joining this group, so be careful while & be specific about your work profile discussion at the interview.
After joining this rude management they can pressure to perform any job role which you have never done & if you not cope with them then they pressurized to put resignation.
I had gone through same phase.
So think before joining to STL.

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 40 minutes
Round difficulty - Easy

Technical round with questions based on DSA.

  • Q1. 

    Reverse a Number Problem Statement

    Create a program to reverse a given integer N. The output should be the reversed integer.

    Note:

    If a number has trailing zeros, their reversed version should not inclu...

  • Ans. 

    Reverse a given integer while excluding trailing zeros.

    • Create a program to reverse the given integer by converting it to a string and then reversing it.

    • Remove any trailing zeros from the reversed string before converting it back to an integer.

    • Handle the constraints of the input integer being between 0 and 10^8.

    • Example: For input 1230, the output should be 321.

  • Answered by AI
  • Q2. 

    Reverse a Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to reverse the Linked List by changing the links between nodes.

    Input:

    The first line of input contai...
  • Ans. 

    Reverse a given singly linked list by changing the links between nodes.

    • Iterate through the linked list and reverse the links between nodes.

    • Use three pointers to keep track of the current, previous, and next nodes.

    • Update the links while traversing the list to reverse it.

    • Return the head of the reversed linked list.

  • Answered by AI
  • Q3. What is the difference in C++ between 'new int[5]' and 'malloc(5 * sizeof(int))'?
  • Ans. 

    new int[5] is C++ specific and initializes the array with default values, while malloc(5 * sizeof(int)) is a C function and does not initialize the array.

    • new int[5] is C++ specific and calls constructors for each element in the array.

    • malloc(5 * sizeof(int)) is a C function and does not call constructors, leaving the array uninitialized.

    • new int[5] returns a pointer to the first element of the array, while malloc(5 * siz...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJuniper Networks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OS, Networking, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Preparation Tips

Round: Extempore
Experience: You need to speak on a random topic for 1-2 minutes
Tips: Just speak confidently

Round: Test
Duration: 20 minutes
Total Questions: 20

College Name: D.A.V College Jalandhar

I appeared for an interview before Apr 2021.

Round 1 - Face to Face 

(7 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions on OOPS and OS mainly.

  • Q1. What are Little Endian and Big Endian in the context of computer architecture?
  • Ans. 

    Little Endian and Big Endian refer to the order in which bytes are stored in computer memory.

    • Little Endian stores the least significant byte first, while Big Endian stores the most significant byte first.

    • Little Endian is commonly used in x86 architecture, while Big Endian is used in architectures like SPARC and PowerPC.

    • Endianness can affect data transmission between systems with different byte orders.

  • Answered by AI
  • Q2. Write a program to determine if your system is little-endian or big-endian.
  • Ans. 

    Program to determine system's endianness

    • Check the endianness by storing a multi-byte integer and checking the byte order

    • Use bitwise operations to extract the least significant byte

    • If the least significant byte is at the lowest memory address, it's little-endian

    • If the least significant byte is at the highest memory address, it's big-endian

  • Answered by AI
  • Q3. What is the volatile keyword in programming?
  • Ans. 

    The volatile keyword in programming is used to indicate that a variable's value can be changed unexpectedly.

    • Volatile keyword is used in multithreaded programming to prevent compiler optimizations on variables that can be changed by other threads.

    • It tells the compiler not to cache the variable's value in a register, ensuring that every access is made to the variable's memory location.

    • Commonly used in embedded systems pr...

  • Answered by AI
  • Q4. What is the use of a function pointer in C?
  • Ans. 

    Function pointers in C are used to store the address of functions, allowing for dynamic function calls and callbacks.

    • Function pointers can be used to implement callbacks in event-driven programming.

    • They can be used to switch between different functions at runtime.

    • Function pointers are commonly used in implementing data structures like function pointers in an array of function pointers.

    • Example: void (*funcPtr)(int) = &a

  • Answered by AI
  • Q5. Design a data structure to implement multi-threading.
  • Ans. 

    Design a data structure for multi-threading

    • Use a thread-safe queue to manage tasks for each thread

    • Implement a lock or semaphore to control access to shared resources

    • Consider using condition variables for synchronization

    • Use atomic operations for shared variables to prevent race conditions

  • Answered by AI
  • Q6. What does a kernel do?
  • Ans. 

    The kernel is the core component of an operating system that manages system resources and provides a bridge between software and hardware.

    • Manages system resources such as CPU, memory, and I/O devices

    • Provides a bridge between software applications and hardware components

    • Handles tasks such as process scheduling, memory management, and device drivers

    • Controls communication between hardware and software layers

  • Answered by AI
  • Q7. What is a storage class in programming?
  • Ans. 

    A storage class in programming defines the scope and lifetime of variables.

    • Storage classes include auto, register, static, and extern.

    • Auto variables are created when a function is called and destroyed when the function ends.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared outside of any function and can be accessed

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANVIDIA interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating Systems, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Micro services, devops, python, networking scenarios, testing scenarios

I applied via Naukri.com and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is OOPs concept?
  • Ans. 

    OOPs concept stands for Object-Oriented Programming concepts which includes encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation is the process of hiding the implementation details from the user.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Polymorphism allows objects to take on multiple forms or behaviors.

    • Abstraction is the process of hiding unnecessary details from

  • Answered by AI
  • Q2. What is lazy loading?
  • Ans. 

    Lazy loading is a technique used to defer the loading of non-critical resources until they are needed.

    • It improves page load time and performance.

    • It is commonly used for images, videos, and other media files.

    • It can be implemented using JavaScript libraries like LazyLoad or Intersection Observer API.

    • Lazy loading can also be used for modules and components in web applications.

    • It helps to reduce the initial load time of th

  • Answered by AI
  • Q3. What is eager loading?
  • Ans. 

    Eager loading is a technique used in software development to load related data in advance to avoid multiple database queries.

    • Eager loading is used to optimize database queries and improve performance.

    • It loads all the required data in a single query instead of making multiple queries.

    • It is commonly used in Object-Relational Mapping (ORM) frameworks like Hibernate, Entity Framework, etc.

    • Eager loading can be used with var...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clearing Test is the key

Skills evaluated in this interview

ITI Interview FAQs

How many rounds are there in ITI HR Manager interview?
ITI interview process usually has 1 rounds. The most common rounds in the ITI interview process are Technical.

Tell us how to improve this page.

ITI HR Manager Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Cisco Interview Questions
4.1
 • 372 Interviews
Indus Towers Interview Questions
3.8
 • 179 Interviews
BHEL Interview Questions
4.1
 • 113 Interviews
Nvidia Interview Questions
3.7
 • 103 Interviews
BT Business Interview Questions
4.0
 • 80 Interviews
Tejas Networks Interview Questions
4.0
 • 75 Interviews
View all

ITI HR Manager Reviews and Ratings

based on 2 reviews

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

2.0

Salary

2.0

Job security

1.0

Company culture

3.0

Promotions

2.0

Work satisfaction

Explore 2 Reviews and Ratings
Finance Executive
33 salaries
unlock blur

₹4.5 L/yr - ₹14 L/yr

Assistant Executive Engineer
33 salaries
unlock blur

₹4.8 L/yr - ₹12 L/yr

Assistant Manager
31 salaries
unlock blur

₹7.1 L/yr - ₹15.5 L/yr

Electrician
29 salaries
unlock blur

₹0.9 L/yr - ₹5.4 L/yr

ITI Electrician
24 salaries
unlock blur

₹1 L/yr - ₹3.3 L/yr

Explore more salaries
Compare ITI with

Cisco

4.2
Compare

Sterlite Technologies

3.8
Compare

BT Business

4.0
Compare

Indus Towers

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