Filter interviews by
Be the first one to contribute and help others!
posted on 7 Jan 2025
I applied via Job Portal and was interviewed in Dec 2024. There was 1 interview round.
I applied via Walk-in and was interviewed in Dec 2024. There were 3 interview rounds.
Group discussion is a very important tool in addressing various problems.
There are mainly two types of vernier calipers: standard vernier caliper and digital vernier caliper.
Standard vernier caliper
Digital vernier caliper
Measurements in micrometers are used for very small distances.
Micrometers are commonly used in precision engineering and manufacturing.
1 micrometer is equal to 0.001 millimeters.
Examples of measurements in micrometers include the thickness of a human hair (around 70 micrometers) and the width of a red blood cell (around 8 micrometers).
Quality in engineering refers to the characteristics of a product or service that meet or exceed customer expectations.
Quality in engineering involves meeting specifications, standards, and requirements.
It includes ensuring reliability, durability, and performance of the product or service.
Quality control measures such as inspections, testing, and audits are used to maintain and improve quality.
Continuous improvement p...
Quality Control (QC) involves a series of steps to ensure products meet quality standards.
1. Establish quality standards and specifications for the product.
2. Create a quality control plan outlining inspection procedures and criteria.
3. Perform inspections and tests during production to identify defects.
4. Implement corrective actions to address any issues found.
5. Monitor and evaluate the effectiveness of the quality ...
I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 4 interview rounds.
I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.
The Aptitude Test session accesses mathematical and logical reasoning abilities
I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 4 interview rounds.
I am currently responsible for leading a team of data scientists, developing and implementing data-driven strategies, and ensuring the quality and accuracy of data analysis.
Leading a team of data scientists
Developing and implementing data-driven strategies
Ensuring quality and accuracy of data analysis
Developed a predictive model for customer churn using machine learning algorithms.
Used Python for data preprocessing and model building
Applied techniques like feature engineering and hyperparameter tuning
Evaluated model performance using metrics like accuracy, precision, and recall
The loss function used in XGBoost is typically the gradient boosting algorithm.
XGBoost uses the gradient boosting algorithm to minimize the loss function
Common loss functions include regression loss functions like squared error and logistic loss for classification
Users can also define custom loss functions in XGBoost
My professional aspiration is to lead a team of data scientists to drive impactful insights and innovations.
Lead a team of data scientists to tackle complex problems
Drive impactful insights and innovations through data analysis
Continuously learn and stay updated on the latest trends in data science
Collaborate with cross-functional teams to implement data-driven solutions
Seeking new challenges and growth opportunities in a more innovative environment.
Desire for new challenges and growth opportunities
Seeking a more innovative work environment
Looking to expand skill set and knowledge in data science
I am excited about the opportunity to contribute my data science skills to IDFC's innovative projects and make a meaningful impact.
Excited about contributing data science skills to innovative projects at IDFC
Opportunity to make a meaningful impact through data-driven solutions
Interested in working with a reputable organization like IDFC
My strengths include strong analytical skills and attention to detail. My weaknesses include a tendency to overthink and difficulty delegating tasks.
Strengths: strong analytical skills
Strengths: attention to detail
Weaknesses: tendency to overthink
Weaknesses: difficulty delegating tasks
I applied via Recruitment Consulltant and was interviewed in Oct 2024. There was 1 interview round.
I have a Bachelor's degree in Quality Management, 5 years of experience in quality assurance, and successfully implemented a new quality control system.
Bachelor's degree in Quality Management
5 years of experience in quality assurance
Implemented a new quality control system
I use a combination of root cause analysis, brainstorming, and data analysis to solve problems efficiently.
Identify the root cause of the problem before jumping to solutions
Brainstorm potential solutions with a team or individually
Use data analysis to make informed decisions and track progress
Implement solutions and monitor results for effectiveness
Adjust strategies as needed based on feedback and outcomes
I implemented a new quality control system that improved efficiency by 20% through individual contributions and team collaboration.
Implemented a new quality control system to streamline processes
Led training sessions for team members to ensure understanding and compliance
Collaborated with cross-functional teams to identify and address quality issues
Introduced regular quality audits to monitor and improve performance
I have closely worked with supply chain operations and would implement process improvements to reduce picking time in the warehouse.
I have collaborated with supply chain teams to optimize inventory management and streamline processes.
Implemented barcode scanning technology to improve accuracy and efficiency in picking orders.
Analyzed data to identify bottlenecks in the picking process and implemented solutions such as ...
Implementing lean principles such as 5S, Kanban, and Just-in-Time inventory management can help reduce SCM operations in a warehouse.
Implement 5S methodology to organize the warehouse and reduce waste
Utilize Kanban system to optimize inventory levels and streamline processes
Adopt Just-in-Time inventory management to minimize excess inventory and improve efficiency
I applied via Walk-in and was interviewed in Nov 2024. There were 3 interview rounds.
It's walkin, so they conducted 1 technical mcqs round.
HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.
HashMap uses an array of buckets to store key-value pairs.
Keys are hashed to determine the index in the array where the key-value pair will be stored.
In case of hash collisions, a linked list or a balanced tree is used to store multiple key-value pairs in the same bucket.
HashMap allows null keys...
Function to find and return all non-repeating characters in an array of strings.
Iterate through the array and count the occurrences of each character using a HashMap.
Then iterate through the array again and check if the count of each character is 1, if so add it to the result list.
Return the list of non-repeating characters.
To find the 3rd highest salary in a database, we can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.
Use a SQL query with 'ORDER BY salary DESC' to sort the salaries in descending order.
Use 'LIMIT 1 OFFSET 2' to skip the first two highest salaries and retrieve the third highest salary.
Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2;
A qualifier in Java is used to specify additional information about a primary, which is the main data type or variable.
A primary in Java is the main data type or variable, while a qualifier provides additional information about the primary.
Qualifiers can be used to modify the behavior or characteristics of a primary.
For example, in Java, 'final' is a qualifier that can be used to make a variable constant.
The main difference is that @RestController is a specialized version of @Controller that is used for RESTful web services.
Both @Controller and @RestController are used in Spring MVC to handle HTTP requests, but @RestController is specifically used for RESTful web services.
@Controller is used to create web pages, while @RestController is used to return data in JSON or XML format.
@RestController is a convenience annotati...
OOP concepts include inheritance, encapsulation, polymorphism, and abstraction.
Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.
Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.
Polymorphism: Ability for objects to be treated as instances of their paren...
Microservices communicate with each other through various communication protocols like HTTP, messaging queues, and gRPC.
Microservices can communicate over HTTP using RESTful APIs.
Messaging queues like RabbitMQ or Kafka can be used for asynchronous communication between microservices.
gRPC is a high-performance, open-source RPC framework that can be used for communication between microservices.
Service discovery mechanism...
Microservice endpoints can be accessed using HTTP requests with the appropriate URL
Use HTTP methods like GET, POST, PUT, DELETE to interact with the microservice
Construct the URL with the base URL of the microservice and the specific endpoint path
Include any necessary headers or parameters in the request for authentication or data filtering
Microservices allow for modular, scalable, and flexible software development by breaking down applications into smaller, independent services.
Microservices enable easier maintenance and updates as each service can be developed, deployed, and scaled independently.
They improve fault isolation, as failures in one service do not necessarily affect the entire application.
Microservices promote agility and faster time-to-mark...
I applied via Approached by Company and was interviewed in Jul 2024. There were 2 interview rounds.
It was a case study explanation round along with general process understanding.
based on 2 reviews
Rating in categories
iEnergizer
Bharti Airtel
Tata Motors
AU Small Finance Bank