Upload Button Icon Add office photos

Regus

Compare button icon Compare button icon Compare

Filter interviews by

Regus Data Entry Operator,back Office Executive Interview Questions and Answers

Updated 31 Mar 2025

Regus Data Entry Operator,back Office Executive Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected
  • Q1. Tell me about your self
  • Q2. Why you are choosing this job
  • Ans. 

    I am choosing this job to leverage my organizational skills and attention to detail in a structured environment.

    • I enjoy working with data and ensuring accuracy, which is crucial in data entry roles.

    • This position allows me to utilize my strong typing skills and proficiency in software like Excel.

    • I appreciate the stability and routine that comes with back office roles, which suits my work style.

    • I am eager to contribute t...

  • Answered by AI
  • Q3. How u r college days and etc
  • Ans. 

    My college days were filled with learning, friendships, and personal growth, shaping my skills for the professional world.

    • I participated in various extracurricular activities, such as the debate club, which improved my communication skills.

    • I completed an internship during my final year, gaining practical experience in data management.

    • I formed study groups with classmates, enhancing my teamwork and collaboration abiliti...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about Regus?
Ask anonymously on communities.

Interview questions from similar companies

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

Interview Questionnaire 

4 Questions

  • Q1. 1. Are you comfortable with rotational shifts.
  • Q2. 2. Give a personal self introduction.
  • Q3. 3. How will you manage work load under pressure.
  • Q4. 4. Will you be able to do night shift. This particular question is for males only.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be simple to interview. Don't be too overconfident or oversmart in front of the panelists you face during interviews. Share your views very logically so that the panelist can understand your words.

I applied via Referral and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About VCB, ACB, UPS, inverter, transformers, DG set, chillers, AHU, fire systems and excel work and PPT

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to take full knowledge, & ensure that I'm capable for this post & ready to take any challenge

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is Specific power consumption
  • Ans. 

    Specific power consumption is the amount of power consumed per unit of output.

    • It is a measure of energy efficiency.

    • It is calculated by dividing the power consumed by the output produced.

    • It is commonly used in industries to optimize energy usage.

    • Examples include kWh/ton in cement production and kWh/kg in textile manufacturing.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - technical and management related knowledge is required.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Shine and was interviewed before Jan 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 - HR 

(3 Questions)

  • Q1. Tell me about your self
  • Q2. Your strength and weakness
  • Q3. Why do you want to join this company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with confidence and crack the interview

I applied via Recruitment Consultant and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Work experience in mechanical
  • Ans. 

    I have 10 years of work experience in mechanical engineering.

    • Designed and implemented mechanical systems for various projects

    • Performed analysis and simulations to optimize performance

    • Collaborated with cross-functional teams to ensure project success

    • Managed and supervised junior engineers

    • Implemented cost-saving measures in manufacturing processes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Once refer your resume first
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed before Jan 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 - HR 

(1 Question)

  • Q1. Basic questions and salary expectations
Round 3 - Technical 

(1 Question)

  • Q1. Technical round as per department
Round 4 - Case Study 

Head round for final salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't accept work which is not in your profile. Strictly follow profile and work timings.
Are these interview questions helpful?

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

The round started at 8 PM. There was one question with several test cases and had to pass every test case in order to get a call for interview.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using iterative or dynamic programming techniques.

    • Fibonacci Definition: F(n) = F(n-1) + F(n-2) with F(1) = F(2) = 1.

    • Iterative Approach: Use a loop to calculate Fibonacci numbers up to N, storing only the last two values to save space.

    • Dynamic Programming: Store previously computed Fibonacci numbers in an array to avoid redundant calculations.

    • Time Complexity: Both iterative ...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

It was first round for 45mins and only one question was asked.

  • Q1. 

    Sum Of Zeroes Coverage Calculation

    You are provided with a binary matrix containing dimensions 'N * M', comprised only of 0s and 1s. Your task is to compute the aggregated sum of coverages for all the zer...

  • Ans. 

    Calculate the total coverage of zeros in a binary matrix based on adjacent ones in a defined neighborhood.

    • Matrix Traversal: Iterate through each cell in the N x M matrix to identify zeros.

    • Neighbor Counting: For each zero, check its top, bottom, left, and right neighbors to count the number of adjacent ones.

    • Boundary Conditions: Ensure that checks for neighbors do not go out of matrix bounds to avoid errors.

    • Example: In a...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

It was again 45 min interview and after an intro we quickly jumped in coding.

  • Q1. 

    Word Occurrence Counting

    Given a string 'S' of words, the goal is to determine the frequency of each word in the string. Consider a word as a sequence of one or more non-space characters. The string can h...

  • Ans. 

    Count the frequency of each unique word in a given string, handling multiple spaces and ignoring leading/trailing spaces.

    • Input Handling: Trim the string to remove leading/trailing spaces and split it by spaces to get individual words.

    • Word Counting: Use a dictionary to count occurrences of each word as you iterate through the list of words.

    • Output Format: Print each unique word along with its count, ensuring each output ...

  • Answered by AI
Round 4 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was an Technical + HR round. The interviewer was very understanding and he checked the overall knowledge of the subject.

  • Q1. 

    Kth Smallest Element Problem Statement

    You are provided with an array of integers ARR of size N and an integer K. Your task is to find and return the K-th smallest value present in the array. All elements...

  • Ans. 

    The Kth Smallest Element problem involves finding the K-th smallest number in a distinct integer array.

    • Sorting Method: Sort the array and return the element at index K-1. Example: For ARR = [3, 1, 4, 2, 5] and K = 3, sorted array is [1, 2, 3, 4, 5], so return 3.

    • Time Complexity: Sorting the array takes O(N log N) time, which is efficient given the constraints.

    • Direct Access: Since all elements are distinct, accessing the...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in HyderabadEligibility criteriaNoCompass Group interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Dynamic Programming, Object Oriented Programming, DBMS, Operating SystemTime required to prepare for the interview - 10 monthsInterview preparation tips for other job seekers

Tip 1 : Competitive Coding helps initially, later Leetcode, GFG
Tip 2 : Add at least 2 projects in your resume
 

Application resume tips for other job seekers

Tip 1 : Add atleast two projects on Resume
Tip 2 : Study in depth from Resume and make your friend take your mock interview

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Jul 2022. There were 3 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 

(4 Questions)

  • Q1. Transformers basics and protections use
  • Q2. Switch gears, ACB, VCB, SF6 Working and protections
  • Q3. Compressors & DG maintenance and working
  • Q4. ETP and STP operation and maintenance
Round 3 - HR 

(1 Question)

  • Q1. Why you want to left your previous company, and lastly salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have depth knowledge of transformer, breakers, compressors, diesel generator, chillers, and water treatment plant.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

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

Round 1 - HR 

(4 Questions)

  • Q1. Personal questions
  • Q2. Academic background
  • Q3. Professional Background
  • Q4. What's your strengths?
Round 2 - Case Study 

Questions regarding Corporate Governance

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared for the interview.

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Sodexo Interview Questions
4.1
 • 174 Interviews
Leadec India Interview Questions
4.0
 • 77 Interviews
BVG India Interview Questions
3.9
 • 52 Interviews
OCS Group Interview Questions
4.1
 • 45 Interviews
View all
Community Associate
70 salaries
unlock blur

₹2.5 L/yr - ₹4 L/yr

Community Manager
63 salaries
unlock blur

₹2.8 L/yr - ₹6.1 L/yr

Community Sales Manager
51 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Area Sales Manager
21 salaries
unlock blur

₹6 L/yr - ₹19.5 L/yr

Area Manager
12 salaries
unlock blur

₹11 L/yr - ₹18.5 L/yr

Explore more salaries
Compare Regus with

Sodexo

4.1
Compare

Compass Group Support Services

4.0
Compare

ISS Facility Services

4.1
Compare

BVG India

3.9
Compare
write
Share an Interview