Upload Button Icon Add office photos

Filter interviews by

Mohite Electronics Senior Design Engineer Interview Questions and Answers

Updated 5 May 2021

Mohite Electronics Senior Design Engineer Interview Experiences

1 interview found

Interview Questionnaire 

1 Question

  • Q1. 1. What is GD and T? 2. Selection of motor as per weight. 3. Types of gears. 4 Basic conveyor related questions.
  • Ans. 

    GD&T is a system for defining and communicating engineering tolerances. Motor selection depends on weight, power, and speed requirements. Types of gears include spur, helical, bevel, and worm. Conveyor questions may relate to design, operation, or maintenance.

    • GD&T is an abbreviation for Geometric Dimensioning and Tolerancing, which is a system for defining and communicating engineering tolerances.

    • When selecting a motor...

  • Answered by AI

Interview questions from similar companies

I appeared for an interview before Jan 2021.

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 - 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 3 - 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 4 - 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 5 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Any questions hr team
  • Ans. My contact no not any time network area ple msg me
  • Answered Anonymously
Round 6 - Case Study 

Diploma

Round 7 - HR 

(1 Question)

  • Q1. What are your salary expectations?
Round 8 - 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 9 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 10 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be honest with your years of experience. All information you share will be verified at the time of joining.
View all tips
Round 11 - Resume Shortlist 
Pro Tip by AmbitionBox:
Avoid using too much corporate jargon in your CV. Sometimes keeping things simple will get your job done.
View all tips

Interview Preparation Tips

Interview preparation tips for other job seekers - I am civil engginer my experience hydro, irrigation tunnel, rvnl tunnel

I applied via Referral and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Basic networking theory like arp, ping, vlans, subnetting
  • Q2. Switching scenarios mostly related to STP
  • Q3. OSI layer based questions. For example, which layer deals with congestion control.
  • Q4. Basics of routing. Ospf n bgp scenarios
  • Q5. One of the challenging cases worked on
  • Ans. 

    Developed a solution for optimizing a complex algorithm for a client in the finance industry

    • Client had a large dataset that needed to be processed quickly

    • Implemented parallel processing to speed up the algorithm

    • Optimized the code to reduce memory usage

    • Collaborated with the client to fine-tune the algorithm for their specific needs

  • Answered by AI
  • Q6. Scenarios questions to check how you would approach a problem and work towards resolution. Like what all information would you ask from the customer to understand the issue and how you would make use of it...

Interview Preparation Tips

Interview preparation tips for other job seekers - Having a concrete networking experience and understanding would help you to crack the interview easily.
The scenarios are not tough and are basically put to check if you know the basics.

Interview Questionnaire 

1 Question

  • Q1. Stge concepts, vSAN, RAID, basic testing, OS concepts, NVMe, SATA, SAS

I appeared for an interview in Dec 2021.

Round 1 - Video Call 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round had 1 very simple coding problem followed by some questions from Java and Spring.

  • Q1. 

    Excel Column Number Conversion

    Given a column title as it appears in an Excel sheet, your task is to return its corresponding column number.

    Example:

    Input:
    S = "AB"
    Output:
    28
    Explanation:

    The seq...

  • Ans. 

    Convert Excel column title to corresponding column number.

    • Iterate through the characters in the input string from right to left

    • Calculate the corresponding value of each character based on its position and multiply by 26^index

    • Sum up all the values to get the final column number

  • Answered by AI
  • Q2. What is a lambda expression in Java, and how does it relate to a functional interface?
  • Ans. 

    Lambda expression in Java is a concise way to represent a single method interface.

    • Lambda expressions are used to provide a concise way to implement functional interfaces in Java.

    • They can be used to replace anonymous classes when implementing functional interfaces.

    • Lambda expressions consist of parameters, an arrow (->), and a body that defines the implementation of the functional interface method.

    • Example: (x, y) ->...

  • Answered by AI
  • Q3. What are Java 8 streams?
  • Ans. 

    Java 8 streams are a sequence of elements that support functional-style operations.

    • Streams allow for processing sequences of elements in a functional way.

    • They can be created from collections, arrays, or I/O resources.

    • Operations like filter, map, reduce, and collect can be performed on streams.

    • Streams are lazy, meaning they only perform operations when necessary.

    • Example: List<String> names = Arrays.asList("Alice",...

  • Answered by AI
  • Q4. What do you understand by autowiring in Spring Boot, and can you name the different modes of autowiring?
  • Ans. 

    Autowiring in Spring Boot is a way to automatically inject dependencies into Spring beans.

    • Autowiring is a feature in Spring that allows the container to automatically inject the dependencies of a bean.

    • There are different modes of autowiring in Spring: 'byName', 'byType', 'constructor', 'autodetect', and 'no'.

    • For example, in 'byName' autowiring, Spring looks for a bean with the same name as the property being autowired.

  • Answered by AI
  • Q5. What does the @SpringBootApplication annotation do internally?
  • Ans. 

    The @SpringBootApplication annotation is used to mark the main class of a Spring Boot application.

    • It is a combination of @Configuration, @EnableAutoConfiguration, and @ComponentScan annotations.

    • It tells Spring Boot to start adding beans based on classpath settings, other beans, and various property settings.

    • It is used to bootstrap the Spring application context, starting the auto-configuration, component scanning, and

  • Answered by AI
  • Q6. What are the basic annotations that Spring Boot offers?
  • Ans. 

    Spring Boot offers basic annotations for various functionalities like mapping requests, handling exceptions, defining beans, etc.

    • 1. @RestController - Used to define RESTful web services.

    • 2. @RequestMapping - Maps HTTP requests to handler methods.

    • 3. @Autowired - Injects dependencies automatically.

    • 4. @Component - Indicates a class is a Spring component.

    • 5. @ExceptionHandler - Handles exceptions in Spring MVC controllers.

  • Answered by AI
Round 2 - Video Call 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round focused more on Multithreading concepts from Java and also some core concepts from OOPS.

  • Q1. What is a thread in Java?
  • Ans. 

    A thread in Java is a lightweight sub-process that allows concurrent execution within a single process.

    • Threads allow multiple tasks to be executed concurrently in a Java program

    • Threads share the same memory space and resources within a process

    • Example: Creating a new thread - Thread myThread = new Thread();

  • Answered by AI
  • Q2. What are the start() and run() methods of the Thread class in Java?
  • Ans. 

    The start() method is used to start a new thread, while the run() method contains the code that the thread will execute.

    • start() method is used to start a new thread and calls the run() method internally

    • run() method contains the code that the thread will execute

    • It is recommended to override the run() method with the desired functionality

  • Answered by AI
  • Q3. What is the difference between the Thread class and the Runnable interface when creating a thread in Java?
  • Ans. 

    Thread class is a class in Java that extends the Thread class, while Runnable interface is an interface that implements the run() method.

    • Thread class extends the Thread class, while Runnable interface implements the run() method.

    • A class can only extend one class, so using Runnable interface allows for more flexibility in inheritance.

    • Using Runnable interface separates the task of the thread from the thread itself, promo

  • Answered by AI
  • Q4. What is the difference between an abstract class and an interface in OOP?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructor, fields, and methods, while interface cannot have any implementation.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define common behavior among subclasses, while interfaces are used to define a contract for cla...

  • Answered by AI
  • Q5. What is the garbage collector in Java?
  • Ans. 

    Garbage collector in Java is a built-in mechanism that automatically manages memory by reclaiming unused memory.

    • Garbage collector runs in the background to identify and remove objects that are no longer needed.

    • It helps prevent memory leaks and optimize memory usage.

    • Examples of garbage collectors in Java include Serial, Parallel, CMS, and G1.

  • Answered by AI
  • Q6. Can you explain the SOLID principles in Object Oriented Design?
  • Ans. 

    SOLID principles are a set of five design principles in object-oriented programming to make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable...

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

This was a System Design Round where I was asked a LLD question to design a URL Shortener followed by a very standard question of LRU Cache. Overall this round went well and the interviewer was also quite satisfied by my answers.

  • Q1. Design a URL shortener.
  • Ans. 

    A URL shortener service that generates short URLs for long links.

    • Generate a unique short code for each long URL

    • Store the mapping of short code to long URL in a database

    • Redirect users from short URL to original long URL

    • Consider implementing custom short codes for branding purposes

  • Answered by AI
  • Q2. 

    LRU Cache Design Problem Statement

    Design and implement a data structure for a Least Recently Used (LRU) cache that supports the following operations:

    • get(key) - Retrieve the value associated with the...
  • Ans. 

    Design and implement a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraints.

    • Implement a doubly linked list to maintain the order of recently used items.

    • Use a hashmap to store key-value pairs for quick access.

    • When capacity is reached, evict the least recently used item before inserting a new item.

    • Handle get and put operations efficiently based on the LRU policy.

    • En...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 2 years of experienceUST Global interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Java , OOPS , Spring , System DesignTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 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 - Coding Test 

Oops concept , Data structures and algorithm(basics), low level design , high level design.

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your self.
  • Q2. Tell me your current ctc and expected ctc

Interview Preparation Tips

Interview preparation tips for other job seekers - One framework and any one programming language with oops and data structure and algorithm plus self confidence is enough.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via LinkedIn and was interviewed before May 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 - Technical 

(1 Question)

  • Q1. All about your current profile your skills related questions, theoretical queries about different areas.
Round 3 - Coding Test 

Random coding question related to core Java, your problem solving techniques, logical accuracy.

Round 4 - HR 

(1 Question)

  • Q1. Current company related questions, salary discussion and others.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts, solid principal, Design pattern
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based, Azure function
  • Q2. Solid principal, cosmos db

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong basic concepts, Azure concepts, Oops concepts,
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

(4 Questions)

  • Q1. Basics of javascript
  • Q2. Basics of angular, nodejs
  • Q3. ES6 functions, nodejs frameworks, angular versions, database side
  • Q4. Previous work experience and projects in detail
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations and discussions
  • Q2. Work mode and positions

Interview Preparation Tips

Topics to prepare for UST Senior Software Engineer interview:
  • Node.Js
  • Angular
  • MySQL
  • AWS
  • Javascript
  • Typescript
Interview preparation tips for other job seekers - Brush up your basics. Have relevant experience and always have strong understanding in whatever you have handson experience.
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 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 - Technical 

(1 Question)

  • Q1. About Siebel and Salesforce
Round 3 - Coding Test 

Siebel coding and Salesforce coding

Round 4 - HR 

(1 Question)

  • Q1. About Salary negotiation

Tell us how to improve this page.

Interview Questions from Similar Companies

Tata Motors Interview Questions
4.2
 • 1k Interviews
Tata Steel Interview Questions
4.1
 • 858 Interviews
Asian Paints Interview Questions
4.0
 • 648 Interviews
Maruti Suzuki Interview Questions
4.2
 • 592 Interviews
Samsung Interview Questions
3.9
 • 547 Interviews
UST Interview Questions
3.8
 • 511 Interviews
Cipla Interview Questions
4.1
 • 485 Interviews
Dell Interview Questions
3.9
 • 386 Interviews
Lupin Interview Questions
4.2
 • 340 Interviews
View all
CAM Engineer
4 salaries
unlock blur

₹1.5 L/yr - ₹2 L/yr

Senior Design Engineer
3 salaries
unlock blur

₹2.5 L/yr - ₹4.4 L/yr

Explore more salaries
Compare Mohite Electronics with

Tata Motors

4.2
Compare

Tata Steel

4.1
Compare

Asian Paints

4.0
Compare

Maruti Suzuki

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