Tip 1 - Practice at least 250 Questions on coding ninjas
Tip 2 - Do some good projects
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume and be confident.
13 MCQs for 17 marks based on Matrices, Probability, Eigen Values, etc Quantitative topics.
An array is given who’s elements represent how many people an umbrella can cover, and a certain number of people is provided; find the minimum number of umbrellas required to exactly cover the given people, else return -1
1 pseudocode-writing question (print a matrix in spiral order) for 3 marks
250-word creative-essay question on IoT and related possible future-technologies.




Draw the path that the spiral makes. We know that the path should turn clockwise whenever it would go out of bounds or into a cell that was previously visited.
He first asked me to introduce myself informally. He then asked me what my favorite subject is, what kinds of companies I am interested in working for, what upcoming areas in Applied Computer Science I am interested in, and which companies and their products make use of these techniques.



1. You can return the list of values in any order. For example, if a valid triplet is {1, 2, -3}, then {2, -3, 1}, {-3, 2, 1} etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
He asked me a puzzle and then he asked where I see myself 10 years down the line, and what my hobbies are. He mentioned again that he liked my project.
You are given 10 boxes with 10 balls in each, and each ball weighs 10 gms, but only one of these boxes contains balls that all weigh 9 gms. With only 1 use of a beam-balance, how do you find the odd box?
Mark 10 boxes 1 to 10.
Then pick 1 ball from box ko, 2 from box not, 3 from box not and so on…
Now the total ball are 55 balls. And weight should ne 550 gms if all balls are ok.
Now weigh them, if the defective ball is lesser weight 9gm each or the total will be lesser than 550. Whatever is less than 550 , that box no is defective…
Else if the ball is heavier 11gm each then the total will be heavier. So whatever is more than 550 , that will ne defective box no

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?