Upload Button Icon Add office photos

Filter interviews by

Hetero Med Solutions Senior Engineer Interview Questions, Process, and Tips

Updated 23 Feb 2024

Hetero Med Solutions Senior Engineer Interview Experiences

1 interview found

Senior Engineer Interview Questions & Answers

user image Hasanuzzaman mandal

posted on 23 Feb 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. What us work of IGBT
  • Ans. 

    IGBT stands for Insulated Gate Bipolar Transistor. It is a type of power semiconductor device used for switching applications.

    • IGBT combines the advantages of both MOSFET and bipolar transistors.

    • It is commonly used in high power applications such as motor drives, inverters, and power supplies.

    • IGBTs have three terminals: gate, collector, and emitter.

    • They are used for high voltage and high current applications due to thei

  • Answered by AI
  • Q2. Why mosfet are not sutaible at vensys machine
  • Ans. 

    MOSFETs are not suitable for Vensys machines due to their limited voltage and current capabilities.

    • MOSFETs have limited voltage and current ratings compared to other power semiconductor devices like IGBTs.

    • Vensys machines typically require high voltage and current handling capabilities, which MOSFETs may not be able to provide.

    • IGBTs are commonly used in Vensys machines due to their higher voltage and current ratings.

    • MOS...

  • Answered by AI
  • Q3. What is slip and and give value
  • Ans. 

    Slip is the difference between synchronous speed and rotor speed in an induction motor.

    • Slip is expressed as a percentage.

    • It is calculated using the formula: (Synchronous speed - Actual speed) / Synchronous speed * 100%

    • For example, if the synchronous speed is 1800 RPM and the actual speed is 1750 RPM, the slip would be (1800 - 1750) / 1800 * 100% = 2.78%

  • Answered by AI
  • Q4. What is use of pole in a generator
  • Ans. 

    Poles in a generator are used to create a magnetic field necessary for generating electricity.

    • Poles are typically made of magnetic material such as iron or steel.

    • The interaction between the poles and the rotor creates a magnetic field, inducing voltage in the stator windings.

    • The number of poles in a generator determines its speed and frequency of the generated electricity.

    • Common types of generators include 2-pole, 4-po

  • Answered by AI
Round 2 - Aptitude Test 

If slip value greater than 1 tyan what happened

Round 3 - HR 

(2 Questions)

  • Q1. Why we can hire u
  • Q2. If ur team member dont want to get the perticuler job how did u motivate them

Interview questions from similar companies

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(6 Questions)

  • Q1. What is the role of exception handling in programming, and how is the 'finally' block used in this context, as well as the process of throwing exceptions?
  • Ans. 

    Exception handling is crucial in programming to handle errors and ensure proper execution. The 'finally' block is used to clean up resources, and throwing exceptions allows for error propagation.

    • Exception handling is used to manage errors and unexpected situations in a program.

    • The 'finally' block is used to execute code that should always run, regardless of whether an exception is thrown or not.

    • Throwing exceptions allo...

  • Answered by AI
  • Q2. What are the differences between SQL and NoSQL databases, and can you mention some NoSQL databases that you are familiar with?
  • Q3. What are the ACID properties implemented in your project, and can you provide a brief overview of the CAP Theorem?
  • Ans. 

    ACID properties ensure data integrity in transactions. CAP Theorem states that a distributed system can only guarantee two out of three: Consistency, Availability, Partition Tolerance.

    • ACID properties: Atomicity, Consistency, Isolation, Durability

    • Example: In a banking application, a transfer of funds should be atomic, consistent, isolated, and durable

    • CAP Theorem: Consistency, Availability, Partition Tolerance - a distri...

  • Answered by AI
  • Q4. Database disaster recovery?
  • Q5. What is the difference between Comparable and Comparator in Java? And how to Implement in Collections.
  • Ans. 

    Comparable is an interface used for natural ordering, while Comparator is used for custom ordering in Java Collections.

    • Comparable interface is used to define the natural ordering of objects. It is implemented by the class whose objects are to be sorted.

    • Comparator interface is used to define custom ordering of objects. It is implemented by a separate class.

    • To implement Comparable, the class needs to override the compare...

  • Answered by AI
  • Q6. Implementation of Generics in Java
  • Ans. 

    Generics in Java allow for creating classes, interfaces, and methods that operate on types parameterized at compile time.

    • Generics provide type safety by allowing compile-time type checking.

    • They enable code reusability and reduce the need for casting.

    • Example: List<String> list = new ArrayList<>();

  • Answered by AI
Round 2 - Technical 

(10 Questions)

  • Q1. Can you provide the code to reverse a string using recursion?
  • Ans. 

    Code to reverse a string using recursion

    • Create a recursive function that takes a string as input

    • Base case: if the string is empty or has only one character, return the string

    • Recursive case: return the last character of the string concatenated with the result of calling the function on the substring excluding the last character

  • Answered by AI
  • Q2. How does object comparison work with specific fields?
  • Ans. 

    Object comparison with specific fields involves comparing values of selected fields between two objects.

    • Object comparison can be done by comparing the values of specific fields in two objects.

    • Fields can be selected based on unique identifiers or criteria for comparison.

    • Example: Comparing the 'name' field of two person objects to check if they are the same.

  • Answered by AI
  • Q3. How does the distributed transactions being handled in a microservice?
  • Ans. 

    Distributed transactions in microservices involve using compensating transactions and event-driven architecture.

    • Microservices typically use compensating transactions to maintain consistency across multiple services.

    • Event-driven architecture can help in coordinating distributed transactions by using events to trigger actions in different services.

    • Implementing distributed transactions in microservices requires careful de...

  • Answered by AI
  • Q4. Aggregator Pattern in Microservice
  • Ans. 

    Aggregator pattern is used in microservices architecture to combine multiple service responses into a single response.

    • Aggregator pattern helps in reducing the number of client requests by combining multiple service responses.

    • It can be implemented using a separate service or within an existing service.

    • Example: A shopping website aggregating product information from different microservices like inventory, pricing, and re

  • Answered by AI
  • Q5. What is the implementation of the factory design pattern?
  • Ans. 

    Factory design pattern is a creational pattern that provides an interface for creating objects in a superclass, but allows subclasses to alter the type of objects that will be created.

    • Factory method pattern defines an interface for creating objects, but lets subclasses decide which class to instantiate.

    • It promotes loose coupling by eliminating the need to bind application-specific classes into the code.

    • Example: A car m...

  • Answered by AI
  • Q6. What is indexing in a database, and what data structures are commonly used for indexing?
  • Ans. 

    Indexing in a database is a technique to improve the speed of data retrieval by creating a data structure that allows for quick lookup.

    • Indexing involves creating a separate data structure that contains pointers to the actual data in the database.

    • Common data structures used for indexing include B-trees, hash tables, and binary search trees.

    • Indexes can be created on one or multiple columns in a database table to speed up...

  • Answered by AI
  • Q7. What is your approach to designing a system capable of handling thousands of requests?
  • Ans. 

    My approach involves using load balancing, caching, asynchronous processing, and horizontal scaling.

    • Implement load balancing to distribute requests evenly across multiple servers.

    • Utilize caching mechanisms to store frequently accessed data and reduce response times.

    • Use asynchronous processing for long-running tasks to free up resources for handling more requests.

    • Implement horizontal scaling by adding more servers to ha...

  • Answered by AI
  • Q8. What is the CQRS pattern in microservices?
  • Ans. 

    CQRS pattern in microservices separates read and write operations for improved scalability and performance.

    • CQRS stands for Command Query Responsibility Segregation

    • It separates the read and write operations into two different models

    • Write operations update the data store, while read operations query a separate data store

    • CQRS can improve performance and scalability by allowing each model to be optimized for its specific t

  • Answered by AI
  • Q9. What is the role of API Gateway in microservices architecture?
  • Ans. 

    API Gateway acts as a single entry point for all client requests in a microservices architecture.

    • API Gateway handles authentication, authorization, rate limiting, and routing of requests to appropriate microservices.

    • It helps in decoupling client applications from individual microservices, providing a more flexible and scalable architecture.

    • API Gateway can also perform tasks like request/response transformation, logging...

  • Answered by AI
  • Q10. Write SQL query to fetch data from two tables using joins?
  • Ans. 

    SQL query to fetch data from two tables using joins

    • Use the JOIN keyword to combine rows from two tables based on a related column

    • Specify the columns to select from each table in the SELECT statement

    • Use the ON keyword to specify the join condition

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare a strong foundation in System Design, NoSQL, Microservices, and Core Java.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 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 

(2 Questions)

  • Q1. Do you have any Technical Knowledge?
  • Ans. I have Technical Knowledge about Server & Computer Troubleshooting.
  • Answered by Manoj Namdev
  • Q2. Can you travel for Job
  • Ans. I can visit any part of India.
  • Answered by Manoj Namdev

Interview Preparation Tips

Interview preparation tips for other job seekers - Add skill in your resume & in your personality. I have seen many people's they have completed there PG but don't have skills.
So Skills is necessary.

I applied via AmbitionBox and was interviewed in Nov 2021. There were 2 interview rounds.

Round 1 - 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 2 - Group Discussion 

Group discussion

Interview Preparation Tips

Topics to prepare for Reliance Retail Senior Engineer interview:
  • Technical Skills
Interview preparation tips for other job seekers - Interview team are very comfortable
So don't harmful
Manajment team are very comfortable
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was basically two leetcode Questions Mainly from array with some algorithm required to apply and other from LinkedList.

Round 2 - Highl Level Design 

(2 Questions)

  • Q1. First the discussion was mainly on Projects you have worked on for first 20 minutes.
  • Q2. Then was given to Design a chat application basically a High Level. Interviewer was friendly and prompt listener.
Round 3 - Behavioral 

(2 Questions)

  • Q1. Very Detailed Project Discussion and Scenario based Questions basically your achievements in detail.
  • Q2. Then some Implementation questions related to designing and Java based and Kafka based.
Round 4 - HR 

(1 Question)

  • Q1. CTC Discussion and Expectations plus Notice period and other documents.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Java-based coding, streams and lambda, design patterns

Senior Engineer Interview Questions & Answers

Target user image Satyabrata Sahoo

posted on 26 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Design principles for Low Level Architecture
  • Ans. 

    Low level architecture design principles focus on optimizing performance, efficiency, and resource utilization.

    • Optimize for performance by minimizing latency and maximizing throughput

    • Efficiently utilize resources such as memory, CPU, and network bandwidth

    • Design for scalability and flexibility to accommodate future growth

    • Use modular and reusable components to promote maintainability and code reusability

    • Consider security

  • Answered by AI
  • Q2. Mvcc architecture
  • Q3. Kafka Architecture

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Asked about resume and then some questions on Linkedlist, Stack
  • Q2. Java garbage collection
  • Q3. What is Bean in Spring
  • Ans. 

    A bean in Spring is a Java object that is instantiated, assembled, and managed by the Spring IoC container.

    • Beans are defined in the Spring configuration file using XML or annotations.

    • Beans are singleton by default but can be configured as prototype.

    • Beans can have dependencies injected by the container.

    • Example: @Component annotation in Spring creates a bean.

    • Example:

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write design for URL sortner
  • Ans. 

    Design a URL shortener system

    • Use a unique identifier for each long URL to generate a short URL

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

    • Implement a redirect mechanism to redirect short URLs to their corresponding long URLs

    • Consider scalability and performance while designing the system

  • Answered by AI
  • Q2. Program to detect cycle on linked list
  • Ans. 

    Use Floyd's Tortoise and Hare algorithm to detect cycle in a linked list.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps.

    • If they meet at any point, there is a cycle in the linked list.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Aug 2023. There were 6 interview rounds.

Round 1 - 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 2 - Coding Test 

2 coding problems.

One is on Hasmap

second one is on Tree

Round 3 - One-on-one 

(2 Questions)

  • Q1. Pair programming Round
  • Q2. One problem step by step solving with unit test cases maintaining time complexity and space complexity.
Round 4 - One-on-one 

(1 Question)

  • Q1. High level Design
Round 5 - One-on-one 

(1 Question)

  • Q1. Techno - Managerial
Round 6 - HR 

(1 Question)

  • Q1. Normal discussion benefits and salary

Hetero Med Solutions Interview FAQs

How many rounds are there in Hetero Med Solutions Senior Engineer interview?
Hetero Med Solutions interview process usually has 3 rounds. The most common rounds in the Hetero Med Solutions interview process are Technical, Aptitude Test and HR.
What are the top questions asked in Hetero Med Solutions Senior Engineer interview?

Some of the top questions asked at the Hetero Med Solutions Senior Engineer interview -

  1. Why mosfet are not sutaible at vensys mach...read more
  2. What is slip and and give va...read more
  3. What is use of pole in a genera...read more

Tell us how to improve this page.

Hetero Med Solutions Senior Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Walmart Interview Questions
3.8
 • 407 Interviews
DMart Interview Questions
3.9
 • 397 Interviews
Landmark Group Interview Questions
4.0
 • 143 Interviews
Lowe's Interview Questions
4.2
 • 130 Interviews
Croma Interview Questions
4.0
 • 126 Interviews
Tesco Interview Questions
3.8
 • 121 Interviews
Target Interview Questions
4.2
 • 117 Interviews
Reliance Digital Interview Questions
4.1
 • 115 Interviews
Reliance Trends Interview Questions
4.3
 • 102 Interviews
View all
Junior Engineer
4 salaries
unlock blur

₹2.5 L/yr - ₹4.6 L/yr

Explore more salaries
Compare Hetero Med Solutions with

Reliance Retail

3.9
Compare

DMart

3.9
Compare

Future Group

4.3
Compare

Reliance Digital

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