Upload Button Icon Add office photos
Engaged Employer

i

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

CitiusTech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

CitiusTech HR Executive Interview Questions and Answers

Updated 19 Jun 2024

CitiusTech HR Executive Interview Experiences

1 interview found

HR Executive Interview Questions & Answers

user image Anonymous

posted on 19 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About role and current responsibilities
  • Q2. About reasons on leaving current company

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. I was asked about my previous job, what kind of role I am looking at and a long term plan
Round 2 - HR 

(1 Question)

  • Q1. Was asked about my previous compensation but there was no salary negotiation and they gave whatever they wanted

Interview Preparation Tips

Topics to prepare for HTC Global Services HR Executive interview:
  • Project Management
Interview preparation tips for other job seekers - If you get an interview call, it's damn easy to clear it. Just be prepared with your basics, have good communication skills and show a zeal for learning and you are good to go

HR Executive Interview Questions Asked at Other Companies

asked in Tata Group
Q1. From an HR perspective, should a manager understand HR principles ... read more
asked in Sodexo
Q2. What do you know about Labor Law?
Q3. What is your understanding of outsourcing?
asked in Accenture
Q4. If you had 100 million dollars, what would you do?
asked in Siri AB
Q5. What are the sourcing techniques you are familiar with ? How long ... read more

I applied via Recruitment Consulltant and was interviewed in Oct 2022. 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 - One-on-one 

(4 Questions)

  • Q1. Why are coming in this profile
  • Ans. Grow my knowladge and show your honestly other person and always give your best and always full of your confident..that thing is very important in this field good communication skill..
  • Answered Anonymously
  • Q2. How much you have knowladge .how can you manage this post
  • Q3. What you know about your work capacity and how much work you ewill do .
  • Q4. How much diserve a salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be full of confidence and calm.never take it easy .

I applied via Monster and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is the difference between Hashmap and LinkedHashmap?

Interview Preparation Tips

Interview preparation tips for other job seekers - Perpare basic of core Java

Skills evaluated in this interview

What people are saying about CitiusTech

View All
a senior software engineer
2w (edited)
Need Insights – Choosing Between Companies
Hi all, Currently have offers from Capgemini, Tech Mahindra, LTIMindTree, Zen&Art, CitiusTech, Nagarro & Persistent. Before making a decision, I need some clarity: 1. Do you get admin access on laptop or need IT for every install? 2. Are office hours flexible or fixed 9 AM login? 3. Is 9 hrs of active laptop time mandatory? 4. What's the leave policy — casual or strict approval? 5. Do projects use the latest technologies or older versions? Thanks in advance!
Got a question about CitiusTech?
Ask anonymously on communities.

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

21 students were shortlisted from the 1st MCQ round and in this round we were asked to write the codes (function only) of 3 questions in 1 hour time.

  • Q1. 

    Rotting Oranges Problem Statement

    You are given a grid containing oranges where each cell of the grid can contain one of the three integer values:

    • 0 - representing an empty cell
    • 1 - representing a fre...
  • Q2. 

    Majority Element Problem Statement

    Given an array/list 'ARR' consisting of 'N' integers, your task is to find the majority element in the array. If there is no majority element present, return -1.

    Exampl...

  • Q3. 

    Maximum Path Sum Between Two Leaves Problem Description

    You are provided with a non-empty binary tree in which each node contains a non-negative integer value. Your task is to find and return the maximum ...

  • Ans. 

    Find the maximum path sum between two leaf nodes in a binary tree.

    • Traverse the tree to find the maximum path sum between two leaf nodes.

    • Keep track of the maximum sum found so far.

    • Consider all possible paths between leaf nodes.

    • Handle cases where the tree has only a single leaf node.

    • Implement a recursive function to calculate the maximum path sum.

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was a technical round with DSA based questions.

  • Q1. 

    N-th Node From The End Problem Statement

    You are given a Singly Linked List of integers. The task is to find the N-th node from the end of the list.

    Example:

    Input:
    If the given list is (1 -> -2 -&g...
  • Ans. 

    Find the N-th node from the end of a Singly Linked List of integers.

    • Traverse the list to find the length L of the list.

    • Calculate the position of the N-th node from the beginning as L - N + 1.

    • Traverse the list again to reach the calculated position and return the node's value.

  • Answered by AI
  • Q2. 

    LCA of Binary Tree Problem Statement

    You are given a binary tree consisting of distinct integers and two nodes, X and Y. Your task is to find and return the Lowest Common Ancestor (LCA) of these two nodes...

  • Q3. 

    Reverse Words in a String: Problem Statement

    You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...

Round 3 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview round with questions based on DSA

  • Q1. 

    Minimum Time To Solve The Problems

    Given 'N' subjects, each containing a certain number of problems, and 'K' friends, assign subjects to friends such that each subject goes to exactly one friend, maintain...

  • Q2. What is grammar in the context of compiler design?
  • Ans. 

    Grammar in compiler design defines the syntax and structure of a programming language.

    • Grammar specifies the rules for forming valid statements in a programming language.

    • It consists of a set of production rules that define how valid programs can be constructed.

    • There are different types of grammars such as context-free grammar, regular grammar, etc.

    • Example: In C programming language, the grammar specifies that a for loop...

  • Answered by AI
  • Q3. What is a token in compiler design?
  • Ans. 

    A token in compiler design is a basic unit of syntax that the compiler can understand and process.

    • Tokens are the smallest units of a program that are meaningful to the compiler.

    • Examples of tokens include keywords, identifiers, operators, and punctuation symbols.

    • Tokens are generated by the lexical analysis phase of the compiler.

    • Tokens are used by the parser to build the abstract syntax tree of the program.

  • Answered by AI
Round 4 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions on DSA and Compiler Design mainly. He told me that you’ll be having your final HR round in some time. I knew that I was going well because he seemed to be quite satisfied with my answers.

  • Q1. 

    Sum Root to Leaf Numbers

    You are given an arbitrary binary tree consisting of N nodes, each associated with an integer value from 1 to 9. Each root-to-leaf path can be considered a number formed by concat...

  • Q2. What is a regular language?
  • Ans. 

    A regular language is a language that can be recognized by a finite automaton.

    • Regular languages can be described by regular expressions.

    • Regular languages are closed under union, concatenation, and Kleene star operations.

    • Examples of regular languages include the set of all strings over an alphabet that contain an even number of 'a's.

  • Answered by AI
  • Q3. What are NP and NP-Hard problems?
  • Ans. 

    NP problems are decision problems that can be verified in polynomial time, while NP-Hard problems are at least as hard as the hardest problems in NP.

    • NP problems can be verified in polynomial time but not necessarily solved in polynomial time.

    • NP-Hard problems are at least as hard as the hardest problems in NP, but may not be in NP themselves.

    • Examples of NP problems include the subset sum problem and the traveling salesm...

  • Answered by AI
Round 5 - HR 

Round duration - 30 minutes
Round difficulty - Easy

That was the round for which I’ve been waiting for hours 
She was very friendly and nice to talk to. It didn’t seem that I was talking to the HR. It was more like talking to a friend. Finally we discussed about the pay-scale and work culture in Accolite.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAAccolite Digital Pvt Ltd interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, 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

I applied via Naukri.com and was interviewed before May 2018. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Telephonic technical
  • Q2. Core Java related exception handling ,design pattern ,oops solid design principle, rest API, different annotations of spring and jpa
  • Q3. Same questions on telephonic round but detailed elaborate and given simple problem statement we had to justify that why it's time n space complexity valid. Rest API questions hibernate orm use
  • Q4. Manager round just to check whether you have actually worked on project or not stress testing performance questions scenario questions

Interview Preparation Tips

General Tips: Quite easy just go with preparation
Skills: Core Java sevlet JSP hibernate spring rest API, Communication, Body Language, Problem Solving, Analytical Skills, Decision Making Skills
Duration: 1-4 weeks

CitiusTech HR Interview Questions

32 questions and answers

Q. Explain your project.
Q. Are you comfortable with flexible working hours including night shifts?
Q. Can you tell us about yourself?

Interview Questionnaire 

1 Question

  • Q1. Exam was conducted on programmes. 10 questions were asked
Are these interview questions helpful?

I applied via Recruitment Consultant and was interviewed in May 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions & team leading

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is not difficult..

I applied via Campus Placement and was interviewed before Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. There was basic questions about Object oriented concepts and a puzzle about 3 & 5 litres jug
  • Q2. A program to swap variables

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are interviewing as a fresher, the interview is pretty easy. Don't panic and let them know that you can learn new technology easily.

I applied via Approached by Company and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic programming questions

Round 2 - HR 

(1 Question)

  • Q1. Salary and self intro discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic interview questions and self intro

CitiusTech Interview FAQs

How many rounds are there in CitiusTech HR Executive interview?
CitiusTech interview process usually has 1 rounds. The most common rounds in the CitiusTech interview process are Technical.
How to prepare for CitiusTech 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 CitiusTech. The most common topics and skills that interviewers at CitiusTech expect are HR, Induction, Onboarding, Documentation and Employee Engagement.

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Interview Questions from Similar Companies

Xoriant HR Executive Interview Questions
4.1
 • 216 Interviews
Globant HR Executive Interview Questions
3.6
 • 184 Interviews
Apexon HR Executive Interview Questions
3.3
 • 152 Interviews
Brillio HR Executive Interview Questions
3.4
 • 140 Interviews
Luxoft HR Executive Interview Questions
3.6
 • 128 Interviews
View all
CitiusTech HR Executive Salary
based on 17 salaries
₹3.2 L/yr - ₹6.3 L/yr
47% more than the average HR Executive Salary in India
View more details

CitiusTech HR Executive Reviews and Ratings

based on 2 reviews

4.7/5

Rating in categories

4.7

Skill development

4.0

Work-life balance

2.7

Salary

3.7

Job security

4.7

Company culture

4.0

Promotions

4.3

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
2.7k salaries
unlock blur

₹8.3 L/yr - ₹15.8 L/yr

Technical Lead
2.2k salaries
unlock blur

₹12.4 L/yr - ₹22 L/yr

Software Engineer
1.3k salaries
unlock blur

₹4.2 L/yr - ₹9.1 L/yr

Technical Lead 1
409 salaries
unlock blur

₹12 L/yr - ₹21.5 L/yr

Technical Lead 2
337 salaries
unlock blur

₹14.4 L/yr - ₹25.8 L/yr

Explore more salaries
Compare CitiusTech with

Accenture

3.7
Compare

Capgemini

3.7
Compare

Xoriant

4.1
Compare

HTC Global Services

3.5
Compare
write
Share an Interview