Filter interviews by
Automating data in files involves using tools like Selenium WebDriver or Apache POI to read/write data from/to files.
Use Selenium WebDriver to interact with web elements and extract data to be written to files
Use Apache POI library to read/write data from/to Excel files
Utilize scripting languages like Python or Java to automate data manipulation in files
My automation framework is a data-driven framework using Selenium WebDriver and TestNG for automated testing.
Uses Selenium WebDriver for interacting with web elements
Utilizes TestNG for test case management and reporting
Employs data-driven approach for test data separation
Includes logging and reporting mechanisms for test execution
Supports parallel execution for faster test runs
You are given an array/list CHOCOLATES
of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M' ...
Distribute chocolates among students to minimize difference between largest and smallest packets.
Sort the array of chocolates packets.
Use sliding window technique to find the minimum difference between largest and smallest packets.
Return the minimum difference as the output.
You are provided with a singly linked list of integers. Your task is to determine whether the given singly linked list is a palindrome. Return true
if it is a palin...
Check if a given singly linked list is a palindrome or not.
Use two pointers approach to find the middle of the linked list
Reverse the second half of the linked list
Compare the first half with the reversed second half to determine if it's a palindrome
Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:
1. get(key)
- Return the value of the key if it exists in the cache; otherwi...
Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.
Use a combination of hashmap and doubly linked list to efficiently implement the LRU cache.
Keep track of the least recently used item and update it accordingly when inserting new items.
Ensure to handle the capacity constraint by evicting the least recently used item when the cache is full.
Implement...
Given an undirected graph as an adjacency matrix and an integer M
, determine whether you can color the vertices of the graph using at most M
colors such that no two adjacent ve...
The M-Coloring Problem involves coloring the vertices of a graph using at most M colors such that no two adjacent vertices share the same color.
Check if the graph can be colored using at most M colors without any adjacent vertices sharing the same color.
Use backtracking or graph coloring algorithms to solve the problem efficiently.
Ensure that the number of colors used is less than or equal to M.
Consider the constr...
I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.
Linux commands
print all substrings and frequency of each substring
merged two sorted arrays
My automation framework is a data-driven framework using Selenium WebDriver and TestNG for automated testing.
Uses Selenium WebDriver for interacting with web elements
Utilizes TestNG for test case management and reporting
Employs data-driven approach for test data separation
Includes logging and reporting mechanisms for test execution
Supports parallel execution for faster test runs
Automating data in files involves using tools like Selenium WebDriver or Apache POI to read/write data from/to files.
Use Selenium WebDriver to interact with web elements and extract data to be written to files
Use Apache POI library to read/write data from/to Excel files
Utilize scripting languages like Python or Java to automate data manipulation in files
I applied via Recruitment Consulltant and was interviewed in Apr 2022. There were 4 interview rounds.
I have worked with a diverse range of profiles in my career as a Senior Lead Recruiter.
IT professionals with expertise in software development, data analysis, and cybersecurity.
Sales and marketing professionals with experience in B2B and B2C industries.
Finance and accounting professionals with knowledge of financial planning and analysis, auditing, and taxation.
Human resources professionals with expertise in talent acq...
Yes, I have experience in report making.
I have created various reports during my previous roles as a recruiter.
I am proficient in using tools like Microsoft Excel and Google Sheets to create reports.
I have experience in analyzing recruitment data and presenting it in a clear and concise manner.
I have created reports on metrics such as time-to-fill, source effectiveness, and candidate quality.
I am familiar with creating...
My motivation for change is to take on new challenges and continue growing professionally.
Seeking opportunities for career advancement
Desire to work in a different industry or company
Willingness to learn new skills and expand knowledge
Need for a change in work environment or culture
Interest in taking on more responsibility and leadership roles
In 5 years, I want to have advanced to a leadership role within the company and have successfully implemented innovative recruitment strategies.
Advance to a leadership role within the company
Successfully implement innovative recruitment strategies
Build a high-performing recruitment team
Establish strong relationships with hiring managers and stakeholders
Contribute to the company's growth and success through effective ta...
I am most inclined with hiring's.
I have extensive experience in recruiting and hiring candidates.
I am skilled in sourcing, screening, and interviewing candidates.
I have a strong understanding of the hiring process and best practices.
I have successfully filled numerous positions in various industries.
I am knowledgeable about applicant tracking systems and recruitment tools.
I will make someone join our company by showcasing our company culture, growth opportunities, and benefits.
Highlight the positive aspects of our company culture, such as a supportive and collaborative work environment.
Emphasize the growth opportunities available within our company, such as career development programs and promotions based on performance.
Discuss the attractive benefits package we offer, including competi...
I applied via LinkedIn and was interviewed before Jul 2022. There were 3 interview rounds.
Java program coding
Aptitude questions
Linux
Automation
MySQL queries
Elastic queries
AWS
Programming
Java
I appeared for an interview before Nov 2020.
Round duration - 90 minutes
Round difficulty - Medium
Proctored Online Test On Mettl.
You are given an array/list CHOCOLATES
of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M'...
Distribute chocolates among students to minimize difference between largest and smallest packets.
Sort the array of chocolates packets.
Use sliding window technique to find the minimum difference between largest and smallest packets.
Return the minimum difference as the output.
Round duration - 60 minutes
Round difficulty - Easy
There were two Interviewers.
Interview started with an introduction.
Questions were asked from my projects.
Questions from Linked Lists, Trees, Graphs were asked.
You are provided with a singly linked list of integers. Your task is to determine whether the given singly linked list is a palindrome. Return true
if it is a pali...
Check if a given singly linked list is a palindrome or not.
Use two pointers approach to find the middle of the linked list
Reverse the second half of the linked list
Compare the first half with the reversed second half to determine if it's a palindrome
Round duration - 60 minutes
Round difficulty - Easy
More questions from DSA were asked.
Questions from DBMS, SQL, OS were asked in the end.
Design a data structure for a Least Recently Used (LRU) cache that supports the following operations:
1. get(key)
- Return the value of the key if it exists in the cache; otherw...
Design a Least Recently Used (LRU) cache data structure that supports get and put operations with capacity constraint.
Use a combination of hashmap and doubly linked list to efficiently implement the LRU cache.
Keep track of the least recently used item and update it accordingly when inserting new items.
Ensure to handle the capacity constraint by evicting the least recently used item when the cache is full.
Implement get(...
Given an undirected graph as an adjacency matrix and an integer M
, determine whether you can color the vertices of the graph using at most M
colors such that no two adjacent v...
The M-Coloring Problem involves coloring the vertices of a graph using at most M colors such that no two adjacent vertices share the same color.
Check if the graph can be colored using at most M colors without any adjacent vertices sharing the same color.
Use backtracking or graph coloring algorithms to solve the problem efficiently.
Ensure that the number of colors used is less than or equal to M.
Consider the constraints...
Tip 1 : Learn Data Structures and Algorithms. Practice atleast 300 (150 Medium + 100 Easy + 50 Hard) coding questions from Geeksforgeeks or Leetcode.
Tip 2 : Learn OOPS, OS, DBMS.
Tip 3 : Do atleast 2 projects.
Tip 1 : Don't mention unnecessary things on resume.
Tip 2 : Be precise and use good template.
Top trending discussions
I applied via Referral and was interviewed before Nov 2020. There were 3 interview rounds.
I applied via Naukri.com and was interviewed in Sep 2019. There was 1 interview round.
I am a recent graduate with a degree in Computer Science and experience in web development.
Recent graduate with a degree in Computer Science
Experience in web development
Strong problem-solving skills
Proficient in programming languages such as Java, JavaScript, and HTML/CSS
My hobbies include reading, hiking, and playing the guitar.
Reading: I enjoy reading fiction and non-fiction books in my free time.
Hiking: I love exploring nature trails and challenging myself with new hikes.
Playing the guitar: I have been playing the guitar for several years and enjoy learning new songs.
Our company is a leading tech startup specializing in AI-driven solutions for businesses.
Specializes in AI-driven solutions for businesses
Considered a leading tech startup in the industry
Known for innovative and cutting-edge technology
Has a strong focus on research and development
Provides services to a wide range of industries
I want to join your company because of its innovative projects, strong company culture, and opportunities for growth.
Innovative projects that align with my interests and skills
Strong company culture that values collaboration and employee development
Opportunities for growth and advancement within the company
I completed various training programs and projects during my college years, gaining hands-on experience in different areas.
Completed a training program in data analysis using Python and R
Developed a mobile application for a class project using Java and Android Studio
Participated in a research project on renewable energy sources
Completed an internship at a local software company, working on web development projects
I appeared for an interview before Jun 2016.
I appeared for an interview before Aug 2016.
I appeared for an interview before May 2016.
I appeared for an interview in Mar 2017.
To make the red fishes 98%, 50 fishes have to be removed from the aquarium.
Calculate 1% of 200 fishes to find the number of red fishes.
Subtract the number of red fishes from 200 to find the number of non-red fishes.
Calculate 2% of the total number of fishes to find the desired number of red fishes.
Subtract the desired number of red fishes from the current number of red fishes to find the number of fishes to be removed.
based on 2 interview experiences
Difficulty level
Duration
based on 18 reviews
Rating in categories
QA Lead
8
salaries
| ₹19 L/yr - ₹25 L/yr |
Operations Associate
7
salaries
| ₹5 L/yr - ₹7.5 L/yr |
Supervisor
7
salaries
| ₹35 L/yr - ₹70 L/yr |
Assistant Manager
4
salaries
| ₹9.5 L/yr - ₹13 L/yr |
Senior Software Developer
4
salaries
| ₹22 L/yr - ₹53 L/yr |
Marpu Foundation
Huawei Technologies
HCL Infosystems
Z X Learning