Filter interviews by
Google.com is a search engine that uses web crawlers to index websites and algorithms to rank search results.
Google uses web crawlers to index websites and store information in its database.
Algorithms are used to rank search results based on relevance and popularity.
Google also uses personalized search results based on user data and location.
Google's homepage is simple and fast-loading to provide a user-friendly e...
Implementing tail -f command without external libraries in Python
Open the file in read mode
Use a loop to continuously read new lines added to the file
Print the new lines as they are read
Find the next warmer day for each day in a list of temperatures.
Use a stack to keep track of indices of temperatures.
Iterate through the temperature array from left to right.
For each temperature, pop from the stack until the current temperature is warmer.
Record the number of days until a warmer temperature is found.
Async is non-blocking, concurrency is managing multiple tasks at the same time, parallelism is executing multiple tasks simultaneously.
Async allows non-blocking execution of code, enabling other tasks to run while waiting for I/O operations.
Concurrency involves managing multiple tasks at the same time, but not necessarily simultaneously.
Parallelism is executing multiple tasks simultaneously, utilizing multiple CPU...
Implement a tail -f logger in code
Use a file pointer to open the log file
Read the file line by line and print new lines as they are added
Use a loop to continuously check for new lines in the file
When we click on a URL, the browser sends a request to the server, which responds with the requested webpage.
Clicking on a URL triggers the browser to send an HTTP request to the server.
The server receives the request and processes it.
The server then sends back a response containing the requested webpage.
The browser receives the response and renders the webpage for the user to view.
To add two numbers represented as linked lists, iterate through both lists simultaneously, adding corresponding digits and carrying over the carry value.
Create a new linked list to store the result.
Initialize a carry variable to 0.
Iterate through both linked lists simultaneously, adding the corresponding digits and the carry value.
If the sum of the digits is greater than 9, update the carry value and store the rem...
A chat app using sockets allows real-time communication between users.
Use a socket library or framework to handle the communication.
Implement a server that listens for incoming connections and manages the chat rooms.
Establish a socket connection between the server and clients for sending and receiving messages.
Handle message encryption and decryption for secure communication.
Implement features like user authentica...
I have worked on various projects involving software development and implementation.
Developed a web application for a retail company to manage inventory and sales.
Implemented a mobile app for a healthcare organization to track patient data and appointments.
Created a data analysis tool for a financial institution to analyze market trends and make investment decisions.
Design a system to display real-time updates of a file's content on a webpage.
Use a server-side programming language like Node.js to read the file content.
Implement a WebSocket connection between the server and the webpage for real-time updates.
Whenever the file is updated, send the updated content to the webpage using the WebSocket connection.
Update the webpage dynamically using JavaScript to display the new cont...
I applied via Job Portal and was interviewed in Aug 2024. There was 1 interview round.
Google.com is a search engine that uses web crawlers to index websites and algorithms to rank search results.
Google uses web crawlers to index websites and store information in its database.
Algorithms are used to rank search results based on relevance and popularity.
Google also uses personalized search results based on user data and location.
Google's homepage is simple and fast-loading to provide a user-friendly experi...
I applied via Approached by Company and was interviewed in Jul 2024. There were 3 interview rounds.
Implementing tail -f command without external libraries in Python
Open the file in read mode
Use a loop to continuously read new lines added to the file
Print the new lines as they are read
Find the next warmer day for each day in a list of temperatures.
Use a stack to keep track of indices of temperatures.
Iterate through the temperature array from left to right.
For each temperature, pop from the stack until the current temperature is warmer.
Record the number of days until a warmer temperature is found.
I applied via Approached by Company and was interviewed in Jul 2024. There were 3 interview rounds.
Stream a live log file to browser
The existing project is a web application for managing inventory and sales.
Built using React for the front-end and Node.js for the back-end
Uses MongoDB as the database
Includes features such as user authentication, product management, and sales tracking
Scaling up an existing project involves optimizing performance, increasing capacity, and improving efficiency.
Identify bottlenecks and areas for improvement
Implement caching mechanisms to reduce load times
Optimize database queries for faster retrieval
Upgrade hardware or infrastructure to handle increased traffic
Use load balancing to distribute traffic evenly across servers
A working software coding problem. Build client-server. Make sure your IDE is ready
Async is non-blocking, concurrency is managing multiple tasks at the same time, parallelism is executing multiple tasks simultaneously.
Async allows non-blocking execution of code, enabling other tasks to run while waiting for I/O operations.
Concurrency involves managing multiple tasks at the same time, but not necessarily simultaneously.
Parallelism is executing multiple tasks simultaneously, utilizing multiple CPU core...
The journey of a request refers to the process of a request being made, processed, and fulfilled by a system.
Request initiation by a user or system
Routing of the request to the appropriate service or endpoint
Processing of the request by the service
Response generation and delivery back to the user
I find it irritating when communication is unclear, leading to misunderstandings and inefficiencies in team projects.
Lack of clear documentation can cause confusion; for example, when onboarding new team members.
Ambiguous requirements from stakeholders can lead to wasted development time; like when a feature is built but not what was needed.
Poor communication in team meetings can result in misaligned goals; for instanc...
I applied via Approached by Company and was interviewed in Jul 2023. There were 5 interview rounds.
Design a data structure for infinite digit numbers supporting addition operations efficiently.
Use an array of strings to store each digit, e.g., ['1', '2', '3'] for 123.
Implement addition by aligning digits from the least significant to the most significant.
Handle carry-over by iterating through the digits and adjusting as needed.
Support operations like addition of two infinite numbers, e.g., '999' + '1' = '1000'.
Consi...
Design a system to display real-time updates of a file's content on a webpage.
Use a server-side programming language like Node.js to read the file content.
Implement a WebSocket connection between the server and the webpage for real-time updates.
Whenever the file is updated, send the updated content to the webpage using the WebSocket connection.
Update the webpage dynamically using JavaScript to display the new content.
Led multiple software projects focusing on scalable web applications and cloud integration, enhancing user experience and performance.
Developed a microservices architecture for an e-commerce platform, improving scalability and reducing downtime.
Implemented CI/CD pipelines using Jenkins and Docker, which decreased deployment time by 40%.
Collaborated with cross-functional teams to design a mobile application that increas...
I have worked on various projects involving software development and implementation.
Developed a web application for a retail company to manage inventory and sales.
Implemented a mobile app for a healthcare organization to track patient data and appointments.
Created a data analysis tool for a financial institution to analyze market trends and make investment decisions.
I excel in problem-solving, collaboration, and adaptability, which drive my success in software engineering projects.
Strong problem-solving skills: I developed an algorithm that reduced processing time by 30% in a data-intensive application.
Effective collaboration: I led a team of developers in a project that improved communication and reduced bugs by 25%.
Adaptability: I quickly learned a new technology stack to meet p...
I applied via LinkedIn and was interviewed before Feb 2023. There were 4 interview rounds.
When we click on a URL, the browser sends a request to the server, which responds with the requested webpage.
Clicking on a URL triggers the browser to send an HTTP request to the server.
The server receives the request and processes it.
The server then sends back a response containing the requested webpage.
The browser receives the response and renders the webpage for the user to view.
To add two numbers represented as linked lists, iterate through both lists simultaneously, adding corresponding digits and carrying over the carry value.
Create a new linked list to store the result.
Initialize a carry variable to 0.
Iterate through both linked lists simultaneously, adding the corresponding digits and the carry value.
If the sum of the digits is greater than 9, update the carry value and store the remainde...
A chat app using sockets allows real-time communication between users.
Use a socket library or framework to handle the communication.
Implement a server that listens for incoming connections and manages the chat rooms.
Establish a socket connection between the server and clients for sending and receiving messages.
Handle message encryption and decryption for secure communication.
Implement features like user authentication,...
I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.
Code the LRU cache on hacker rank
Implement a tail -f logger in code
Use a file pointer to open the log file
Read the file line by line and print new lines as they are added
Use a loop to continuously check for new lines in the file
I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.
High-level component structure of a page refers to the organization of the main elements on a webpage.
Identify the main content area of the page
Determine the navigation menu and its placement
Decide on the placement of secondary content such as ads or related articles
Consider the footer and its contents
Ensure the page is responsive and adaptable to different screen sizes
Top trending discussions
I applied via Walk-in and was interviewed before Oct 2021. There were 2 interview rounds.
Good technical round, you can manage, mainly Java questions used to come
I appeared for an interview before Mar 2024.
SQL code development
Some of the top questions asked at the BrowserStack Senior Software Engineer interview -
based on 7 interview experiences
Difficulty level
Duration
based on 7 reviews
Rating in categories
3-6 Yrs
Not Disclosed
Software Engineer
87
salaries
| ₹14.9 L/yr - ₹55 L/yr |
Executive Accountant
65
salaries
| ₹14 L/yr - ₹30 L/yr |
Senior Software Engineer
40
salaries
| ₹20 L/yr - ₹40 L/yr |
Driver
28
salaries
| ₹1.4 L/yr - ₹6 L/yr |
Software Developer
27
salaries
| ₹10.3 L/yr - ₹31.5 L/yr |
LambdaTest
Yodlee
Fingent
Bravura Solutions