Tip 1 : Divide your syllabus equally keeping the last 1-2 weeks for revision.
Tip 2 : Keep track of the schedule and keep on revising older topics occasionally while moving ahead
Tip 3 : Be confident on what you learn. If you know then know it completely or else leave the topic entirely.
Tip 4 : Do atleast 2 hands-on projects of Cloud to get a realtime understanding of how the platform works.
Tip 1 : Keep the resume compact consisting only of important points
Tip 2 : No need of describing a point. Rather include projects and internships that you have worked on with key points of topics that you have learned there.
Timing was free to be selected as the timer starts only after the link is opened.
We were given a deadline of 5 days to appear for the test.
However, our university scheduled it on one evening for everyone.
The exam was conducted in out university computer labs with our professors as guards on round.
There was no significant event as such. Everyone gave their own exam successfully.
The exam happened without causing any issue of any kind.



n = 5, k = 2 and arr[] = {6, 5, 4, 8, 7}
The array elements in sorted order are [4, 5, 6, 7, 8]. The ‘2-nd’ smallest element in the array is 5, so the answer is 5.
1. Don’t print anything. Return the value of ‘k-th’ smallest element.
2. ‘k’ is a positive integer and not greater than the size of the array.
3. The array ‘arr’ is unsorted, and all the elements of the array are distinct.
Divide array in groups
Sort groups and find median of each
Store all the medians in a auxiliary array
Find median of median
Thats the answer



1. The value ‘0’ represents an empty house,
2. The value ‘1’ represents a non-infected person,
3. The value ‘2’ represents an infected person.
It was again held on evening
5 students at a time were called in and each were given 2 mintues to think about and 3 mintues to talk on the topic and then the last 5 mintues were given for cross questioning.
The interviewer was unbaised and clear with the rules. He did not take part in the debate but did control the situation as and when any student raised voice.
Number of participants in group discussion - 5
It was held in the afternoon.
It was held personally on our personal laptop.
Each and every question were based on resume or topics agreed by me that I know
Coding needed to be done by sharing screen.
The interviewer was friendly and made me comfortable.



Input: 'arr1' = [2, 3, 45], 'arr2' = [4, 6, 7, 8] and 'k' = 4
Output: 6
Explanation: The merged array will be [2, 3, 4, 6, 7, 8, 45]. The element at position '4' of this array is 6. Hence we return 6.
Binary search algorithm
It was a basic application of one algorithm
The interviewer just wanted to check how quick am I in basic coding.
It was a very quick and easy round
It was a formality basically checking my documents and confirming where do I stay, can I attain the office offline and is it sure for me to accept the offer.
Where do you stay?
Will you be able to attain office offline if selected?
Will you relocate if selected?
Are sure to accept the offer letter if offered?
Tip 1 : Be relaxed
Tip 2 : Be confident
Tip 3 : Be polite

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?