Filter interviews by
I applied via Referral and was interviewed before May 2023. There was 1 interview round.
Grading Squid and keeping record involves assessing the quality of squid and maintaining detailed documentation.
Evaluate squid based on freshness, texture, color, and overall appearance.
Assign grades such as A, B, or C to indicate quality levels.
Record grading results in a logbook or digital database for future reference.
Maintain consistency in grading criteria to ensure accuracy and fairness.
Regularly review and updat...
Grading Squid and keeping record involves evaluating the performance of employees and maintaining documentation.
Establish clear criteria for grading squid based on job responsibilities and expectations.
Regularly assess the performance of employees and provide feedback for improvement.
Maintain accurate records of each employee's performance evaluations and any disciplinary actions taken.
Use a consistent grading system t...
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
Vlookup is a function in Excel used to search for a value in a table and return a corresponding value from another column.
Vlookup stands for 'Vertical Lookup'
It is commonly used in Excel to search for a value in the leftmost column of a table and return a value in the same row from a specified column
Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
Example: =VLOOKUP(A2, B2:D10, 3, FALSE) - searc...
My day in my previous organization involved analyzing large datasets, creating reports, and presenting findings to stakeholders.
Reviewing and cleaning large datasets to ensure accuracy
Creating visualizations and reports to communicate insights
Collaborating with team members to identify trends and patterns
Presenting findings to stakeholders in meetings or presentations
I possess strong technical skills in data analysis, including proficiency in programming languages, statistical analysis, and data visualization tools.
Proficient in programming languages such as Python, R, SQL
Skilled in statistical analysis and data modeling techniques
Experience with data visualization tools like Tableau, Power BI
Knowledge of machine learning algorithms and techniques
A Pivot Table is a data summarization tool used in spreadsheet programs to analyze, summarize, and present data in a tabular format.
Pivot tables allow users to reorganize and summarize selected columns and rows of data to obtain desired insights.
Users can easily group and filter data, perform calculations, and create visualizations using pivot tables.
Pivot tables are commonly used in Excel and other spreadsheet program...
To find the highest-paid employee in each department, we need to group employees by department and then select the employee with the highest salary in each group.
Group employees by department
Find the employee with the highest salary in each group
Retrieve the employee's name, salary, and department name
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...
posted on 11 Dec 2024
I applied via Approached by Company and was interviewed in Nov 2024. There were 7 interview rounds.
I have 5 years of experience in QC, including conducting inspections, creating quality control plans, and ensuring compliance with industry standards.
Conducted inspections on raw materials, in-process production, and finished products
Created and implemented quality control plans to improve product quality and reduce defects
Ensured compliance with industry standards and regulations, such as ISO 9001 and AS9100
Collaborat...
I have extensive experience with various computer software programs, including QA testing tools and data analysis software.
Proficient in using QA testing tools such as Selenium, JIRA, and HP Quality Center
Skilled in data analysis software like Microsoft Excel and SQL
Familiar with programming languages like Java and Python for automation testing
Experience with bug tracking systems and version control tools
Prioritizing work involves identifying and organizing tasks based on their importance and urgency.
Identify tasks that are critical to project success
Consider deadlines and time constraints
Communicate with team members to understand priorities
Use tools like priority matrices or task lists
Adjust priorities as needed based on changing circumstances
Knowledge of computer
I have 5 years of work experience as a QA QC Engineer.
5 years of work experience in QA QC engineering
Experience in conducting quality control inspections
Proficient in creating and implementing quality assurance processes
Familiar with industry standards and regulations
Strong analytical and problem-solving skills
About the future company
I applied via Approached by Company and was interviewed in Oct 2024. There were 4 interview rounds.
Assessment via link MCQ
I applied via campus placement at Delhi College of Engineering (DCE), Delhi and was interviewed in Oct 2024. There were 3 interview rounds.
Shortlisted students were divided in group of 19
Selected students from gd got the call for case study round
It is impossible to accurately determine the exact number of airplanes flying in the sky at any given moment.
The number of airplanes in the sky constantly changes due to take-offs, landings, and flights being at different stages.
Factors such as time of day, weather conditions, and air traffic also affect the number of airplanes in the sky.
Air traffic control systems may provide estimates of the number of airplanes in a
I would utilize the 1 acre of land near my college for creating a sustainable community garden.
Establishing vegetable and fruit gardens to promote healthy eating among students
Setting up a composting area to reduce waste and enrich the soil
Creating a space for outdoor classes and events to enhance learning and community engagement
To start a Starbucks franchise in your town, you need to follow a specific process set by the company.
Contact Starbucks corporate office to inquire about franchise opportunities
Meet the financial requirements and submit a franchise application
Find a suitable location for the Starbucks store
Complete the required training and adhere to Starbucks' standards and guidelines
Use SQL query to extract data from a given table
Use SELECT statement to retrieve data from the table
Specify the columns you want to retrieve after SELECT
Use FROM clause to specify the table name
Add conditions using WHERE clause if needed
Use ORDER BY clause to sort the results if necessary
based on 16 reviews
Rating in categories
Supervisor
5
salaries
| ₹1.5 L/yr - ₹5.1 L/yr |
Account Assistant
5
salaries
| ₹1.6 L/yr - ₹2.2 L/yr |
Quality Controller
5
salaries
| ₹1.8 L/yr - ₹2.2 L/yr |
Inhouse Consultant
4
salaries
| ₹2.4 L/yr - ₹3.2 L/yr |
Production Supervisor
3
salaries
| ₹2.2 L/yr - ₹3.8 L/yr |
iEnergizer
Bharti Airtel
Tata Motors
AU Small Finance Bank