Upload Button Icon Add office photos

Filter interviews by

Kent Interview Questions and Answers

Updated 16 Jun 2024

Kent Interview Experiences

Popular Designations

4 interviews found

I applied via Walk-in 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 - Electrical technician 

(3 Questions)

  • Q1. Galandin tarminsan etc
  • Q2. Motor winding cebal poling migraine test
  • Q3. ES Preventive Maintenance of All Kinds of H.V & LV Breakers, Motors, Voltage Up To 33 KV & 11 KV & 6.6.KV /2400 KW ,Transformer(15.75KV /230 KV ), Corrective Maintenance of HV/MV /LV Switches gears,V...
  • Ans. 

    The Electrical Technician is responsible for preventive and corrective maintenance of various high and low voltage equipment and testing/calibration of protection relays.

    • Responsible for maintenance of motors, transformers, breakers, switches, and other equipment

    • Testing and calibration of protection relays for motors, transformers, and generators

    • Termination of high voltage motors, cable erection, installation, and load ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dear sir/ madam
please find the attached document of an ELECTRICAL TECHNICIAN
With utmost regard, here I forward my CV along with credentials for your kind consideration.
I have extensive cross-cultural experience of 16 years. & 12 years in GCC countries, so expecting a favorable response from your end.
call numb XXXXX

Electrical Technician Interview Questions asked at other Companies

Q1. Preventive Maintenance of All Kinds of H.V & LV Breakers, Motors, Voltage Up To 33 KV & 11 KV & 6.6.KV /2400 KW ,Transformer(15.75KV /230 KV ), Corrective Maintenance of HV/MV /LV Switches gears,VCB,ACB,MOCB,SF6 Breakers, Breake... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Work experience. Knowledge.
  • Q2. Work styles performances

Interview Preparation Tips

Interview preparation tips for other job seekers - Fantastic company's

Senior Executive Commercial Interview Questions asked at other Companies

Q1. What is the main fundamental of a Commercial person
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. What can you do to take the company's progress to higher heights?
  • Ans. I am following all the rules and conditions laid down by Kent Company to take Kent Company forward.With my honesty and hard work, I can take Kent Row Company far ahead.
  • Answered Anonymously

Sales Promoter Interview Questions asked at other Companies

Q1. What I Know about device... what is ram,room, Android etc
View answer (11)

I applied via LinkedIn and was interviewed in Nov 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 

(1 Question)

  • Q1. Basic of Electrical and schematic drawing knowledge Maintenance Skills
Round 3 - One-on-one 

(1 Question)

  • Q1. Client interview same as before

Interview Preparation Tips

Interview preparation tips for other job seekers - Your overall maintenance skills will be asked even reading values.

Electrical Supervisor Interview Questions asked at other Companies

Q1. Tell me about HT LT and Dg Transformer, how to do load changeover
View answer (1)

Kent interview questions for popular designations

 Electrical Technician

 (1)

 Sales Promoter

 (1)

 Senior Executive Commercial

 (1)

 Electrical Supervisor

 (1)

Interview questions from similar companies

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The round consisted of 3 coding Questions and 20 Technical MCQs.

  • Q1. 

    Connect Ropes Problem Statement

    Given a number of ropes denoted as 'N' and an array containing the lengths of these ropes, your task is to connect the ropes into one single rope. The cost to connect two r...

  • Ans. 

    The task is to find the minimum cost required to connect all the ropes by summing their lengths.

    • Iterate through the ropes and connect the two shortest ropes at each step to minimize cost

    • Use a priority queue to efficiently find the shortest ropes

    • Keep track of the total cost as you connect the ropes

    • Example: For input [4, 3, 2, 6], connect 2 and 3 (cost 5), then connect 4 and 5 (cost 9), then connect 9 and 6 (cost 15) for

  • Answered by AI
  • Q2. 

    Idempotent Matrix Verification

    Determine if a given N * N matrix is an idempotent matrix. A matrix is considered idempotent if it satisfies the following condition:

    M * M = M

    Input:

    The first line cont...
  • Ans. 

    Check if a given matrix is idempotent by verifying if M * M = M.

    • Iterate through the matrix and multiply it with itself to check if it equals the original matrix.

    • If the condition M * M = M is satisfied, then the matrix is idempotent.

    • If the condition is not satisfied, then the matrix is not idempotent.

  • Answered by AI
  • Q3. 

    Sum of LCM Problem Statement

    Given an integer 'N', calculate and print the sum of the least common multiples (LCM) for each integer from 1 to N with N.

    The sum is represented as:
    LCM(1, N) + LCM(2, N) + ....

  • Ans. 

    Calculate and print the sum of least common multiples (LCM) for each integer from 1 to N with N.

    • Iterate from 1 to N and calculate LCM of each number with N

    • Add all the calculated LCM values to get the final sum

    • Return the sum for each test case

  • Answered by AI
Round 2 - Coding Test 

Round duration - 120 minutes
Round difficulty - Medium

This round is a Long Coding Round. Every Candidate was assigned with a mentor who guides them, We were given a real-life scenario for which we have to construct a database with required tables. We should draw an ER Diagram to demonstrate the Database. After the Database Completion, We have to Start Coding the Application. The Design(like Placing the button or background colour) is not given much importance. They mainly test the practical knowledge of candidates in OOPS and expertise in a C, C++, Java, Android or any other language were OOPS Concepts can be applied.

Round 3 - Video Call 

(1 Question)

Round duration - 180 Minutes
Round difficulty - Medium

This Round is a technical Interview. I was asked Questions to test my Technical Knowledge.

  • 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 array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of 0s, 1s, and 2s while iterating through the array.

    • Swap elements based on the values encountered to sort the array in-place.

    • Time complexity of the algorithm should be O(N) where N is the size of the array.

  • Answered by AI
Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in ChennaiEligibility criteria7 CGPAMr. Cooper interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, OOPS, Database Management SystemTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Do Atleast 2 Projects
Tip 2 : Be Strong in what you have in your resume
Tip 3 : Be Confident and Polite

Application resume tips for other job seekers

Tip 1 : Keep it Short to one or two pages
Tip 2 : Keep it standout..as it is what projects you uniquely.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Referral and was interviewed before Dec 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 - One-on-one 

(2 Questions)

  • Q1. Normal Question Take it easy
  • Q2. General questions so take it easy

Interview Preparation Tips

Interview preparation tips for other job seekers - Direct interview with Your Reporting manager, after then interview with Sr. manager. General questions in interview....So don't worry..

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

Interview Questionnaire 

2 Questions

  • Q1. Tell me something about yourself ?
  • Q2. Why do you want to join this company ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident , whatever they ask

I applied via Referral and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Online test 70 question

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing

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

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself. Your career so far. Strength and weakness.
  • Ans. 

    I have a background in retail management with a focus on customer service. My strengths include leadership and problem-solving skills, while my weakness is sometimes being too detail-oriented.

    • Background in retail management

    • Strong focus on customer service

    • Leadership skills demonstrated through successful team management

    • Problem-solving skills showcased through resolving customer complaints

    • Weakness in being overly detail-...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be calm and present yourself as you are

I appeared for an interview in Jun 2021.

Interview Questionnaire 

2 Questions

  • Q1. About share marketing.
  • Q2. Regarding SIP

Interview Preparation Tips

Interview preparation tips for other job seekers - knowledge about share marketing, Previous job experiences and works.
They will check your attitude confidence and your work fashion answer there questions with full confidence.

Kent Interview FAQs

How many rounds are there in Kent interview?
Kent interview process usually has 1-2 rounds. The most common rounds in the Kent interview process are Resume Shortlist, HR and Technical.
How to prepare for Kent 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 Kent. The most common topics and skills that interviewers at Kent expect are Gas, Oil, Refinery, Abaqus and Civil.
What are the top questions asked in Kent interview?

Some of the top questions asked at the Kent interview -

  1. ES Preventive Maintenance of All Kinds of H.V & LV Breakers, Motors, Voltage ...read more
  2. Basic of Electrical and schematic drawing knowledge Maintenance Ski...read more
  3. Motor winding cebal poling migraine t...read more

Tell us how to improve this page.

Kent Interview Process

based on 13 interviews

Interview experience

4.8
  
Excellent
View more

Interview Questions from Similar Companies

Morningstar Interview Questions
3.9
 • 243 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
TresVista Interview Questions
2.8
 • 115 Interviews
Pine Labs Interview Questions
3.4
 • 112 Interviews
Mr Cooper Interview Questions
4.0
 • 86 Interviews
Axis Direct Interview Questions
3.8
 • 79 Interviews
Synchrony Interview Questions
4.3
 • 78 Interviews
View all

Kent Reviews and Ratings

based on 135 reviews

3.7/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

3.5

Salary

3.3

Job security

3.5

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 135 Reviews and Ratings
Area Sales Manager
29 salaries
unlock blur

₹2.8 L/yr - ₹7.6 L/yr

Sales Executive
12 salaries
unlock blur

₹1.5 L/yr - ₹4.7 L/yr

Area Service Manager
11 salaries
unlock blur

₹4.1 L/yr - ₹5.8 L/yr

Management Trainee
9 salaries
unlock blur

₹3.4 L/yr - ₹4.8 L/yr

Water Purifier Technician
8 salaries
unlock blur

₹2 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Kent with

SBI Cards & Payment Services

3.7
Compare

Axis Direct

3.8
Compare

Kotak Securities

3.6
Compare

Aadhar Housing Finance

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