Upload Button Icon Add office photos

Filter interviews by

Regenersis Interview Questions, Process, and Tips for Experienced

Updated 12 Sep 2022

Regenersis Interview Experiences for Experienced

Popular Designations

1 interview found

Technician Interview Questions & Answers

user image Anonymous

posted on 9 Mar 2022

I applied via Referral and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is operating system
  • Ans. 

    An operating system is software that manages computer hardware and software resources and provides common services for computer programs.

    • It acts as an interface between the user and the computer hardware.

    • It manages memory, processes, and input/output devices.

    • Examples include Windows, macOS, and Linux.

    • It provides a platform for other software to run on.

    • It allows multiple programs to run simultaneously.

    • It provides securi...

  • Answered by AI
  • Q2. Operating system acts as an interpreter between computer application and hardware. It works as a user interface.
  • Q3. What are the types of the operating system or O.S?
  • Ans. 

    Types of operating systems include Windows, macOS, Linux, and mobile OS like Android and iOS.

    • Windows: Developed by Microsoft, widely used in personal computers.

    • macOS: Developed by Apple, used in Macintosh computers.

    • Linux: Open-source OS, used in servers and embedded systems.

    • Android: Mobile OS developed by Google, used in smartphones and tablets.

    • iOS: Mobile OS developed by Apple, used in iPhones and iPads.

  • Answered by AI
  • Q4. What is the BUS speed?
  • Ans. 

    The BUS speed refers to the speed at which data is transferred between the computer's motherboard and other components.

    • The BUS speed is measured in megahertz (MHz) or gigahertz (GHz).

    • A higher BUS speed generally indicates faster data transfer.

    • Different components of a computer, such as the CPU, RAM, and graphics card, may have different BUS speeds.

    • For example, a CPU may have a BUS speed of 3.2 GHz, while RAM may have a

  • Answered by AI
  • Q5. What is SCSI and explain.
  • Ans. 

    SCSI stands for Small Computer System Interface. It is a set of standards for connecting and transferring data between computers and peripheral devices.

    • SCSI is a high-speed interface that allows multiple devices to be connected to a computer.

    • It uses a parallel bus architecture to transfer data between devices.

    • SCSI devices can include hard drives, tape drives, optical drives, scanners, and printers.

    • SCSI supports a wide ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple advice to get your job is to analyse the requirements of the company you apply and go through it.

Skills evaluated in this interview

Technician Interview Questions asked at other Companies

Q1. What kinds of pipe used for hot and cold water supply ?
View answer (8)

Interview questions from similar companies

I applied via Job Portal and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Array, String problem and java , c

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic knowledge of java and c++

Interview Questionnaire 

5 Questions

  • Q1. Tell me about yourself
  • Q2. About the B.Tech and M.Tech Project
  • Q3. Job experience
  • Ans. 

    I have over 8 years of experience working as a Sr Engineer in various industries.

    • Managed multiple engineering projects simultaneously

    • Led cross-functional teams to successful project completion

    • Developed and implemented innovative solutions to complex engineering challenges

  • Answered by AI
  • Q4. Why you want to change
  • Q5. Tell me something that is not in resume
  • Ans. 

    I have experience leading cross-functional teams and successfully delivering complex projects.

    • Led a team of engineers, designers, and product managers to develop and launch a new mobile app

    • Managed a project with a budget of $1 million and delivered it on time and within scope

    • Implemented agile methodologies to improve team efficiency and collaboration

    • Received recognition for outstanding leadership skills and ability to

  • Answered by AI

Interview Questionnaire 

2 Questions

  • Q1. Questions regarding projects and DSA
  • Q2. Prepare your projects and CV well if if going into research profile, prepare DSA well if going into developer profile.

I applied via Walk-in and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Is it still in door to door marketing
  • Q2. Are you a sales person, if yes feeling shyness

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a simple intererviw round but you will be ready

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

Have to attempt 2 programming questions within 2:30 hours. Can take any time over the weekend. Relatively easy problems. Questions were long, but the solution code was small.

  • Q1. 

    The Skyline Problem

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette when viewed from a distance. Each building is ...

  • Ans. 

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette.

    • Iterate through the buildings and create a list of critical points (x, y) where the height changes.

    • Sort the critical points based on x-coordinate and process them to generate the skyline.

    • Merge consecutive horizontal segments of equal height to ensure no duplicates in the output.

  • Answered by AI
  • Q2. 

    MergeSort Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to sort the list using the 'Merge Sort' algorithm.

    Input:

    The input consists of a single line contain...
  • Ans. 

    Sort a Singly Linked List using Merge Sort algorithm.

    • Implement the Merge Sort algorithm for linked lists.

    • Divide the list into two halves, sort each half recursively, then merge them.

    • Use a fast and slow pointer to find the middle of the list for splitting.

    • Handle the base case of a single node or empty list.

    • Example: Input: 4 3 2 1 -1, Output: 1 2 3 4

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 240 Minutes
Round difficulty - Medium

Had to solve 1 programming question in 4 hours. It was in the morning on a weekend. The environment was not so good. It was a small institute and got very crowded. The platform was also buggy. but the question was not difficult. Was able to solve it in just 1 hour and leave.

  • Q1. 

    Batch Photography Problem

    Alex has acquired a machine that can photocopy photos in batches of a minimum size 'K'. Given 'N' photos with resolutions represented in an integer array photos, the machine prod...

  • Ans. 

    Minimize maximum error by splitting photos into batches of size at least 'K'.

    • Sort the array of resolutions in ascending order.

    • Iterate through the array and calculate the error for each possible batch.

    • Return the minimum possible maximum error found.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

It was in the afternoon. The interviewer basically asked me what technologies I have worked on. Checked my knowledge of those technologies with simple questions. Told me what I'll be working on if I get selected.

  • Q1. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Maintain left pointer for 0s, right pointer for 2s, and current pointer for traversal.

    • Example: If current element is 0, swap it with element at left pointer and increment both pointers.

    • E...

  • Answered by AI
Round 4 - Video Call 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Hard

It was also in the afternoon. The interviewer was the member of the team I'll be working on if I get selected. He asked me some basic questions about related technologies.
Gave me 2-3 DS & Algo problems and asked me to solve them.

  • Q1. 

    Array Sum Calculation

    Calculate the sum of all elements in an array of length N.

    Input:

    Line 1: An integer N indicating the size of the array.
    Line 2: N integers, the elements of the array, separated by ...
  • Ans. 

    Calculate the sum of all elements in an array of length N.

    • Iterate through the array and add each element to a running sum.

    • Return the final sum as the output.

  • Answered by AI
  • Q2. 

    Ninja and Alien Language Order Problem

    An alien dropped its dictionary while visiting Earth. The Ninja wants to determine the order of characters used in the alien language, based on the given list of wor...

  • Ans. 

    Determine the order of characters in an alien language based on a list of words.

    • Create a graph where each character is a node and there is a directed edge from character 'a' to character 'b' if 'a' comes before 'b' in any word.

    • Perform a topological sort on the graph to get the order of characters.

    • Return the order as a string in lexicographical order.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo CriteriaSamsung R&D Institute interview preparation:Topics to prepare for the interview - Recursion, Backtracking, Dynamic Programming, Trees, ArrayTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : It's a Daily process. Not weekly, Not monthly. DAILY!
Tip 2 : Take part in Online Contests. HackerEarth is best for Contests posted by companies.
Tip 3 : Even after you have solved some problem, try to find a better solution for it online. Companies don't want a solution, they want optimized solution.

Application resume tips for other job seekers

Tip 1 : Modify resume for each job you are applying for. It should show why you are suitable for that particular job.
Tip 2 : Remove any extra things like interests and hobbies. No one cares.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on OS Concepts like synchronization, race condition, deadlock etc. Questions on storage classifiers in C, Bit manipulation and data structures. Two coding questions: Power of 2, Reverse a string.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on operating systems, basics of C, data structures. Domain knowledge is also important. Good knowledge of your projects.

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic question on my inclination of work, and my family background.

Interview Preparation Tips

Round: Test
Experience: There was a np complete problem given. Brute force solution worked
Duration: 3 hours
Total Questions: 1

College Name: IIT Madras

I appeared for an interview in Jun 2016.

Interview Preparation Tips

Round: Test
Experience: We had to code in the given duration. The question was a simple dynamic programming one. But the catch was that we could test our solution only a given number of times.
Tips: Make sure you're strong in your coding basics and have enough self confidence.
Duration: 3 hours
Total Questions: 1

Round: Technical Interview
Experience: The tech round was basically on the resume. There were a few questions about the projects I had done.
Tips: Know about everything you've written in your resume. Don't write anything that you're not very sure of.

Round: HR Interview
Experience: Questions were about my work and achievements in college and future plans.
Tips: Talk freely and don't be nervous. Don't reveal any future study plans to the HR!

College Name: Nitk surathkal

I appeared for an interview in Aug 2017.

Interview Preparation Tips

Round: Test
Experience: 20 English questions
Rest of the 40 were quant.
There was a severe shortage of time in this test. English was a piece of cake but the rest of the questions were pretty time consuming.
Tips: Its better to finish those questions first which aren't time consuming.
Duration: 1 hour
Total Questions: 60

Round: Test
Experience: There was one three mark question and two five mark questions.
The three marker was either on linked list or array sorting.
The second question was based on dynamic programming.
The third question was on algorithms and number theory. Eg. My question was to find the units digit in a^b.
You could code in C,C++, Java or C#
Duration: 1 hour 10 minutes
Total Questions: 3

Round: Group Discussion
Experience: It wasn't exactly a group discussion. It was more of extempore. We were given ten minutes to note down points on the topic and each of us had to speak for two minutes. And then at the end there was a brief discussion on the arguments.
Tips: Don't start making philosophical arguments. You are expected to give technical arguments and reasons.
Don't contradict yourself ever. Make your stand on the topic clear and stick to it.
Don't cut off people in the middle. Hear them out.
It's not about who is speaking the most. It's about who is most effective.
Duration: 1 hour

College Name: IIT Madras

Regenersis Interview FAQs

How many rounds are there in Regenersis interview for experienced candidates?
Regenersis interview process for experienced candidates usually has 1 rounds. The most common rounds in the Regenersis interview process for experienced candidates are Technical.
How to prepare for Regenersis interview for experienced candidates?
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 Regenersis. The most common topics and skills that interviewers at Regenersis expect are Hardware, Laptop, Repair, BTS and Desktop Support.
What are the top questions asked in Regenersis interview for experienced candidates?

Some of the top questions asked at the Regenersis interview for experienced candidates -

  1. What are the types of the operating system or O...read more
  2. What is the BUS spe...read more
  3. What is SCSI and expla...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Daikin Interview Questions
4.1
 • 152 Interviews
HP India Interview Questions
4.0
 • 142 Interviews
Samsung Research Interview Questions
3.1
 • 133 Interviews
Xiaomi Interview Questions
3.8
 • 91 Interviews
LG Soft India Interview Questions
3.1
 • 90 Interviews
KENT RO Systems Interview Questions
3.9
 • 81 Interviews
Eureka Forbes Interview Questions
3.7
 • 71 Interviews
Western Digital Interview Questions
3.5
 • 50 Interviews
View all

Regenersis Reviews and Ratings

based on 41 reviews

3.8/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

3.3

Salary

2.9

Job security

3.5

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 41 Reviews and Ratings
Service Coordinator
7 salaries
unlock blur

₹1.1 L/yr - ₹3 L/yr

Technician
6 salaries
unlock blur

₹0.8 L/yr - ₹2 L/yr

Team Lead Operations
6 salaries
unlock blur

₹3.2 L/yr - ₹4.6 L/yr

Team Lead
6 salaries
unlock blur

₹2.5 L/yr - ₹3 L/yr

Senior Service Engineer
5 salaries
unlock blur

₹1.5 L/yr - ₹4 L/yr

Explore more salaries
Compare Regenersis with

Eureka Forbes

3.7
Compare

KENT RO Systems

3.9
Compare

Daikin

4.1
Compare

Haier Appliances India

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