Tip 1 : Be regular
Tip 2 : Be sincere
Tip 3 : Build a good cv
Tip 1 : Be honest don't lie to make it look big
Tip 2 : Be brief
It was held in the evening. Basically a coding round containing two problems









1. The output array can contain the elements in any particular order.
2. Even if a particular element appears more than once in each matrix row, it should still be present only once in the output array.
Consider the matrix MAT [ [ 2, 3, 4, 7 ] , [ 0, 0, 3, 5 ] , [ 1, 3, 8, 9 ] ] having 3 rows and 4 columns respectively.
The output array should be [ 3 ] as 3 is the only element that is present in all three rows.



The start time of one chosen meeting can’t be equal to the end time of the other chosen meeting.
'N' = 3, Start = [1, 3, 6], End = [4, 8, 7].
You can organize a maximum of 2 meetings. Meeting number 1 from 1 to 4, Meeting number 3 from 6 to 7.
What do you mean by data encapsulation?
How data encapsulation is achieved?
What is the benefit of inheriting a class?

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?