Tip 1 : make minimum 2 good projects
Tip 2 : Be thorough in at least 1 programming language
Tip 3 : work on your communication skills
Tip 1: Avoid lying on your resume.
Tip 2: Resumes need to be concise and clear.
Its multiple-choice questions included aptitude, CS basics (OOP, DBMS, OS, etc.), and a few machine-learning problems.
Time - 135 minutes
environment - proctored with the camera and mike on.



A straightforward method is to iterate through each element of the array and determine whether there is another integer that can be added to it to produce the sum.
Nested loops can be used to accomplish this.



If two rows have the same number of 1’s, return the row with a lower index.
If no row exists where at-least one '1' is present, return -1.
Input: ‘N’ = 3, 'M' = 3
'ARR' =
[ [ 1, 1, 1 ],
[ 0, 0, 1 ],
[ 0, 0, 0 ] ]
Output: 0
Explanation: The 0th row of the given matrix has the maximum number of ones.
One approach is to traverse the matrix row-by-row, count the number of 1s in each row, and then compare the count to the maximum. Return the row's index, up to a maximum of 1s, last. The method's temporal complexity is O(m*n), where m is the matrix's number of rows and n is its number of columns.



A Subsequence of a string is the one which is generated by deleting 0 or more letters from the string and keeping the rest of the letters in the same order.
One approach is to traverse the matrix row-by-row, count the number of 1s in each row, and then compare the count to the maximum. Return the row's index, up to a maximum of 1s, last. The method's temporal complexity is O(m*n), where m is the matrix's number of rows and n is its number of columns.
Held in the afternoon. It stayed for a full hour. The interviewer gave great advice.



1. K is a non-negative integer.
2. Absolute Difference between two integers A and B is equal to the difference of maximumOf(A, B) and minimumOf(A, B).
3. Pair of integers should have different indices in the array.
I failed to solve it the first time, but I persisted. I worked on it for 30 minutes. I gave the interviewer every strategy I had tried.
He finally offered me a vague concept, and I immediately told him to use a brute force strategy.
difference between the DELETE and TRUNCATE commands in a DBMS.
Tip 1: do practice SQL queries
Tip 2: should be clear with all the DBMS terminologies
Tip 3: practice is the key
Held in the afternoon. It stayed for a full hour. The interviewer gave great advice.



If ‘N’ = 7, ‘ARR’ = { 1, 5, 2, 3, 4, 6, 7 } and ‘TARGET’ = 9
Then, there are three triplets with sum less than 9:
1) {1, 5, 2}
2) {1, 2, 3}
3) {1, 2, 4}
4) {1, 3, 4}
Thus, the output will be 4.



In the below histogram where array/list elements are {2, 1, 5, 6, 2, 3}.
The area of largest rectangle possible in the given histogram is 10.
It was an medium level problem. I used stack for this question. I explained him every corner case. He was satisfied with the solution.



The distance is calculated as |i1 – i2| + |j1 – j2|, where i1, j1 are the coordinates of the current cell and i2, j2 are the coordinates of the nearest cell having value 1.
You can only move in four directions which are : Up, Down, Left and Right.
If N = 3, M = 4
and mat[ ][ ] = { 0, 0, 0, 1,
0, 0, 1, 1,
0, 1, 1, 0 }
then the output matrix will be
3 2 1 0
2 1 0 0
1 0 0 1
In order to determine the minimal distance between each cell in the matrix, Navigate the matrix to identify the cell that contains 1, then measure the distance between two adjacent cells to determine the minimum distance.
it was scheduled in the evening, the HR representative was friendly.
Represent your college journey in 5 minutes
Tip 1: Be yourself
Tip 2: must use good vocabulary to impress the interviewer
Tip 3: maintain eye contact
where do you see yourself in 5 years
Tip 1: Be yourself
Tip 2: must use good vocabulary to impress the interviewer
Tip 3: maintain eye contact
why this company
Tip 1: Be yourself
Tip 2: must use good vocabulary to impress the interviewer
Tip 3: maintain eye contact
how you can say that you're the best candidate for this company
Tip 1: Be yourself
Tip 2: must use good vocabulary to impress the interviewer
Tip 3: maintain eye contact

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