Upload Button Icon Add office photos

Filter interviews by

Connecting2Work HR Solutions Interview Questions and Answers

Updated 15 Nov 2024

Connecting2Work HR Solutions Interview Experiences

1 interview found

HR Recruiter Interview Questions & Answers

user image Anonymous

posted on 23 Jul 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. As a fresher in HR, what you know about recruitment process and job portals?

HR Recruiter Interview Questions asked at other Companies

Q1. You have huge target. And evil mseb wants loadsheeding,power cut. How you can convince your mentor to help you to finish mails and calls
View answer (1)

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Sales and marketing
  • Q2. Mobile sales and marketing
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Mar 2023. 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 - HR 

(2 Questions)

  • Q1. Tell Me About Your Self
  • Q2. Tell me about your hobby
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Initial screening from teamware and next level of round of techies discussion from client team.
Round 2 - Technical 

(1 Question)

  • Q1. SQL basic and moderate level questions

I applied via Company Website and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Group Discussion 

Farmer's is the best

Round 2 - Technical 

(3 Questions)

  • Q1. What are you doing farmer's
  • Q2. What time do you think we should do it
  • Q3. What are the dates are fine
  • Ans. 

    The question is unclear and needs clarification.

    • Can you please provide more context or rephrase the question?

    • Are you asking about specific dates for a project or task?

    • Do you need me to input dates into a system or database?

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - So much for your help with this matter and please don't
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 - Technical 

(2 Questions)

  • Q1. Autocad 2D and 3D and quelty control
  • Q2. Auto cad 2D&3D and Quietly Engineer

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice jobyseekers and thanks for letting me know so much

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Give your brief introduction
  • Ans. Mainly whatever I'm telling about my self I'm very confident for that so you have to be firstly confident then tell them about your self your qualifications your skill and everything
  • Answered Anonymously
  • Q2. Did you work anywhere before that
  • Ans. If you work anywhere and you have experience either it is only of 6 months but explain everything about your last firm and your position and how you worked how many tasks you have done that's all matter how you explained
  • Answered Anonymously
  • Q3. What is your skills?
  • Ans. So tell them your best skills and make them realize that you're fit for the position they are giving to you don't give a chance to them to ask anything again say alot about your skills
  • Answered Anonymously
  • Q4. Do you have any location preference? Or you may relocate
  • Ans. Never say yes!! for location preference
  • Answered Anonymously
  • Q5. In your last firm what was your CTC ?
  • Ans. Tell them how much CTC you were getting in your last firm!!
  • Answered Anonymously
  • Q6. What you will do if the company will pressures you sometimes for multiple task?
  • Ans. 

    I will prioritize tasks and communicate with my manager to ensure realistic expectations.

    • Assess the urgency and importance of each task

    • Create a to-do list and prioritize tasks accordingly

    • Communicate with my manager to ensure realistic expectations

    • Delegate tasks if possible

    • Avoid multitasking and focus on one task at a time

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and don't show your weaknesses and speak alot in front of them don't let them ask you too much questions make them realize that you're so confident and you're best for the position

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Hard

The round was online. It had 3 coding questions to be solved.  Was asked about why are the javascript and jquery used? What is the difference between angular 8 and angular?

  • Q1. 

    Permutation In String Problem Statement

    Given two strings, str1 and str2, determine whether str2 contains any permutation of str1 as a substring.

    Input:

    str1 = “ab”
    str2 = “aoba”

    Output:

    True

    Example:

    ...
  • Ans. Permutation In String
    • Check for Base Case i.e if Length of str1 > Length of str2, return false.As substring length is always greater than or equal to permutation never small.
    • Generate all the permutations of the short string and then check for each permutation if this string is present as a substring of the second string or not.
    • Initialize a global boolean value named flag.
    • To generate all the permutations of the small ...
  • Answered Anonymously
  • Q2. 

    Minimum Time Problem Statement

    In a city with ‘N’ junctions and ‘M’ bi-directional roads, each junction is connected to other junctions with specified travel times. No road connects a junction to itself, ...

  • Ans. Depth First Search

    This approach will use DFS(Depth First Search) to make a recursive function in which we pass the currCost, which is the current cost. If the light is not green when we reach that junction, we have to add the waiting time in currCost. After that, we will call the recursive function on all the adjacent unvisited junctions by incrementing the currCost with the weight of the edge. We will maintain a vari...

  • Answered Anonymously
  • Q3. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaNo criteriaPeopleStrong interview preparation:Topics to prepare for the interview - Arrays, string, oops, dbms, dyanamic programming, trees, graphsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : practice coding questions
Tip 2 : Search and study previous interview questions

Application resume tips for other job seekers

Tip 1 : Mention the things according to role
Tip 2 : just write a clear one page resume

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are the roles and responsibilities of HR
  • Q2. An hr department is asked with maximizing employee productivity and protecting the company from any issues that may rise within the workforce. Hr responsiilities include compensation and benifits, recruitm...

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview lasted for 20 minutes. Don't be panic try to answer the questions confidently.
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. What is your current role
Round 3 - HR 

(1 Question)

  • Q1. What are your strengths and weaknesses?

Interview Preparation Tips

Interview preparation tips for other job seekers - Very challenging and intelligent question asked

Connecting2Work HR Solutions Interview FAQs

How many rounds are there in Connecting2Work HR Solutions interview?
Connecting2Work HR Solutions interview process usually has 1 rounds. The most common rounds in the Connecting2Work HR Solutions interview process are One-on-one Round.
How to prepare for Connecting2Work HR Solutions 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 Connecting2Work HR Solutions. The most common topics and skills that interviewers at Connecting2Work HR Solutions expect are Javascript, Management, Sales, Front End and HTML.

Tell us how to improve this page.

Connecting2Work HR Solutions Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Quess Interview Questions
3.9
 • 406 Interviews
Randstad Interview Questions
3.8
 • 259 Interviews
Team Lease Interview Questions
3.9
 • 200 Interviews
Adecco Group Interview Questions
3.7
 • 87 Interviews
ManpowerGroup Interview Questions
3.9
 • 51 Interviews
Iksula Interview Questions
3.5
 • 27 Interviews
Allegis Group Interview Questions
3.7
 • 19 Interviews
Kelly Services Interview Questions
4.2
 • 15 Interviews
Gi Group Interview Questions
3.9
 • 15 Interviews
View all

Connecting2Work HR Solutions Reviews and Ratings

based on 11 reviews

4.6/5

Rating in categories

4.9

Skill development

4.8

Work-life balance

4.6

Salary

4.9

Job security

4.6

Company culture

4.7

Promotions

4.6

Work satisfaction

Explore 11 Reviews and Ratings
HR Recruiter
26 salaries
unlock blur

₹0.9 L/yr - ₹1.8 L/yr

Digital Marketing Executive
4 salaries
unlock blur

₹2 L/yr - ₹2 L/yr

HR Executive
3 salaries
unlock blur

₹1.2 L/yr - ₹1.8 L/yr

SME
3 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

Explore more salaries
Compare Connecting2Work HR Solutions with

Team Lease

3.9
Compare

Quess

3.9
Compare

Randstad

3.8
Compare

ManpowerGroup

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