Tip 1: Have a strong command of DS topics, such as Graphs and related algorithms like Shortest Path Algorithms.
Tip 2: Acquire basic system design knowledge of common examples, such as the Ticket Booking System.
Tip 1: Showcase past internship experiences.
Tip 2: Have some impressive Full Stack projects.
It happened during the day (3 PM) on a Google Meet. I was asked to write the code on an online IDE.



Up: (x, y) -> (x - 1, y)
Left: (x, y) -> (x, y - 1)
Down: (x, y) -> (x + 1, y)
Right: (x, y) -> (x, y + 1)
consider the binary matrix below. If source = (0, 0) and destination = (3, 4), the shortest path from source to destination has length 11.

Online round on Google Meet around 3 PM.
I was asked about the design of the Ticket Booking System: BookMyShow.
Watch YouTube videos for similar ticket booking systems and their designs.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?