Tip 1 : Basic of DSA should be clear
Tip 2 : Basics of Cloud and SQL
Tip 3 : Cover all test cases
Tip 1 : Mention at least one project
Tip 2 : Don't add too many extracurricular activities
The round was at 2 pm and a proctored exam.






If two or more such subarrays exist, return any subarray.
It was at 1:00 pm
Fast paced with video on



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?



Given linked list is 1 -> 0 -> 2 -> 1 -> 2.
The sorted list for the given linked list will be 0 -> 1 -> 1 -> 2 -> 2.
Explain Joins, ACID properties, Normalization
There are two empty bowls in a room. You have 50 white balls and 50 black balls. After you place the balls in the bowls, a random ball will be picked from a random bowl. Distribute the balls (all of them) into the bowls to maximize the chance of picking a white ball.
It was at 7:00 pm
Fast paced with video on
What are the benefits of a multiprocessor system?
What is thread in OS?
Explain the difference between the DELETE and TRUNCATE command in a DBMS.
in a database.
What is meant by normalization and denormalization?
Explain all joins with example.



If the string is: “abccba”, then the first repeated character is ‘c’, but the repeated character that is present first in the string is ‘a’. You need to print ‘a’.
Keep in mind that you need to print the repeated character that is present first in the string and not the first repeating character.



If there are any duplicates in the given array we will count only one of them in the consecutive sequence.
For the given 'ARR' [9,5,4,9,10,10,6].
Output = 3
The longest consecutive sequence is [4,5,6].
Can you solve this in O(N) time and O(N) space complexity?
What is a lock. Explain the major difference between a shared lock and an exclusive lock during a transaction
Create a database for BookMyShow.
What is thrashing in OS?
What is the difference between paging and segmentation?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?