Upload Button Icon Add office photos

Filter interviews by

Jmv Lps Electrical Supervisor Interview Questions and Answers

Updated 2 Apr 2024

Jmv Lps Electrical Supervisor Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(1 Question)

  • Q1. They ask about last company working process , my position and role.
  • Ans. My position of last company is electrical site engineer and the work was installing LTDT box with digital meter on transformers(like 25kv , 63kva ,100kva. And 250-400kva )in zonal area( Purvanchal). It’s basically used to detect power theft in area.
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Jmv Lps Electrical Supervisor interview:
  • Basic electrical knowledge.
  • About your company
Interview preparation tips for other job seekers - Be confident and reply smoothly to your interviewer.

Interview questions from similar companies

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

Interview Questionnaire 

2 Questions

  • Q1. Basic c programming
  • Q2. Previous experience questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest. And prepare well in data structures

Software Engineer Interview Questions & Answers

MaxLinear user image Gayathri S ee15m052

posted on 4 Dec 2016

I applied via Campus Placement and was interviewed before Dec 2015. There were 2 interview rounds.

Interview Preparation Tips

Round: Test
Experience: It was a written test with some numerical aptitude questions and coding questions. The test was fairly easy
Duration: 1 hour

College Name: IIT Madras

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

Interview Preparation Tips

Round: Test
Experience: It was a written test with some numerical aptitude questions and coding questions. The test was fairly easy
Tips: Learn about pointers and using function pointers

Round: Technical Interview
Experience: First, I was asked to brief about the projects I have done so far. Then there were some questions about C programming like pointers, const pointers, storage classes, volatile keyword etc. It was followed by some basic questions about computer architecture, microcontroller, FPGA, RTOS

Round: Technical Interview
Experience: In this round I was asked to write algorithm for some simple problems like checking if a given integer (not string) is palindrome or not, checking if a number is a multiple of 3 (using bitwise operations) etc

College Name: IIT Madras

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

Interview Questionnaire 

2 Questions

  • Q1. Communication Concepts
  • Q2. Embedded Concepts

Interview Preparation Tips

Round: Resume Shortlist
Experience: Shortlisted based on CGPA and Profile
Tips: CGPA above 7.5 and Communication/CS based coursework/ability

Round: Test
Experience: C Coding Questions which checked basic knowledge of C
Tips: Brush up your C skills. Questions are easy but may require knowledge of stuff like what is big endian and little endian etc.
Duration: 1 hour 30 minutes
Total Questions: 12

Round: Technical Interview
Experience: My Communication relation concepts were tested. My Major Project was asked in detail.
Tips: If Comm background, prepare ITC, MultiCarrier/Wireless at a good level. If not they will ask C.

Round: Technical Interview
Experience: I was asked basic level embedded concepts.
Tips: Prepare on the following and similar stuff : How to implement a pseudo dynamic memory allocation using flash memory- which data structure to use. How does Inter Process Communication work. How does a multicore processor synchronizes its cores. If Comm background, give the TX and RX chain design (Wireless System Design)

Skills: Communication Systems, Embedded Systems, C Programming
College Name: IIT Madras

I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. DS and Algo questions based on DP and backtracking
  • Q2. Clone linked list with random pointers.
  • Ans. 

    Clone a linked list with random pointers.

    • Create a new node for each node in the original list.

    • Store the mapping between the original and cloned nodes in a hash table.

    • Traverse the original list again and set the random pointers in the cloned list using the hash table.

    • Return the head of the cloned list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly DS and Algo rounds followed by design rounds. Sometimes there can be language specific questions.

Skills evaluated in this interview

I applied via Referral and was interviewed in Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I am not allowed to reveal

Interview Preparation Tips

Interview preparation tips for other job seekers - I don't think I can reveal the questions but I can tell you that KLA has high standards in interview process.
Some tips for software engineer interview
1. Please prepare to do competitive programming like use leetcode algoexpert hacker rank
2. Some of the important areas are string problems dynamic programming stack based and tree based
3. There can be design round and interesting questions may be encountered

I applied via Referral and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Connected sum hacker rank problem
  • Ans. 

    Connected sum problem involves finding the number of connected components in a graph

    • The problem can be solved using DFS or BFS algorithm

    • The input graph can be represented using adjacency list or matrix

    • The output is the number of connected components in the graph

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always should be logical

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Pointer and linked list

Round 3 - Case Study 

Pure technical on kernel programming

Round 4 - Technical 

(3 Questions)

  • Q1. Pure technical questions on background project
  • Q2. Mutex semaphore and spinlock
  • Q3. How you will achieve multi threaded programming
  • Ans. 

    Multi-threaded programming can be achieved by creating multiple threads that run concurrently.

    • Identify the tasks that can be executed in parallel

    • Create threads using threading libraries in the chosen programming language

    • Synchronize the threads to avoid race conditions and deadlocks

    • Use locks, semaphores, and mutexes to manage shared resources

    • Optimize the performance by balancing the workload among threads

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Why you want to join this company
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. This was more like shortlisting round with manager. Asked about resume and previous work experience. Not much Technical questions.
Round 3 - One-on-one 

(5 Questions)

  • Q1. Python programming questions, Basics
  • Q2. Python oops concepts
  • Q3. What is module in Python
  • Ans. 

    A module in Python is a file containing Python code, which can define functions, classes, and variables.

    • Modules help organize Python code into reusable components

    • Modules can be imported into other Python scripts using the 'import' keyword

    • Examples of modules in Python include math, random, and os

  • Answered by AI
  • Q4. Python memory management
  • Q5. Basic Devops questions

Skills evaluated in this interview

Jmv Lps Interview FAQs

How many rounds are there in Jmv Lps Electrical Supervisor interview?
Jmv Lps interview process usually has 1 rounds. The most common rounds in the Jmv Lps interview process are Technical.

Tell us how to improve this page.

Jmv Lps Electrical Supervisor Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

KLA Interview Questions
3.7
 • 44 Interviews
Element14 Interview Questions
4.0
 • 16 Interviews
MaxLinear Interview Questions
3.1
 • 12 Interviews
STJ Electronics Interview Questions
3.6
 • 11 Interviews
Xilinx Interview Questions
4.2
 • 8 Interviews
Wafer Space Interview Questions
3.9
 • 8 Interviews
View all
Design Engineer
12 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Executive Accountant
10 salaries
unlock blur

₹2.2 L/yr - ₹3.6 L/yr

Senior Engineer
7 salaries
unlock blur

₹3.3 L/yr - ₹7.8 L/yr

Electrical Site Engineer
7 salaries
unlock blur

₹2 L/yr - ₹3.5 L/yr

Purchase Executive
7 salaries
unlock blur

₹2.6 L/yr - ₹3.4 L/yr

Explore more salaries
Compare Jmv Lps with

Samsung Semiconductor

3.5
Compare

STJ Electronics

3.6
Compare

Element14

4.0
Compare

Autocop India

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