Tip 1 : Worked on communication skills
Tip 2 : Do atleast 1 project
Tip 1 : Mark skills with Bold letters.
Tip 2 : Mention projects on the resume
First Technical Round



A sequence 'A' is a subsequence of a sequence 'B' if 'A' can be obtained from 'B' by deletion of several (possibly, zero) elements. For example, [3,1] is a subsequence of [3,2,1] and [4,3,1], but not a subsequence of [1,3,3,7] and [3,10,4].
Step 1 : Apply data structure
Step 2 : Maximum length subsequence with one digit common is.



1. The length of each array is greater than zero.
2. The first index of each array is the most significant digit of the number. For example, if the array A[] = {4, 5, 1}, then the integer represented by this array is 451 and array B[] = {3, 4, 5} so the sum will be 451 + 345 = 796. So you need to return {7, 9, 6}.
3. Both numbers do not have any leading zeros in them. And subsequently, the sum should not contain any leading zeros.
Step 1 : Can replace the only by 1,
Step 2 : So that the sum of both of these arrays becomes 10.



(x-2,y+1)
(x-2,y-1)
(x+1,y-2)
(x-1,y-2)

If there is a coin at (1,1), Bob wins the game as Alice can make no move to start the game.

You are given ‘exp’ = 1*2+4*5+3, here the minimum and maximum value of the expression occurs when , (1*2) + (4*5) + 3 = 25, and 1*(2 + 4) *(5 + 3) = 48. Hence the answer is [25, 48].
Step 1 : For test case #1, we can select elements and, the value of the expression, which is the minimum possible value. Another possible pair is 4 and 5.
Step 2 : For test case #2, we can select elements 4 and 7, the value of the expression is, which is the minimum possible 3


An array ‘ARR’ consists of ‘N’ numbers. The task is to find pair having the minimum XOR value.No, need to print the values of the element. Just print the minimum XOR value. Can you help Ninja to solve this problem?
If the array ‘ARR’ is [13,5,11,1], the answer will be 4, corresponding to the XOR value of 1 and 5.
Step 1 : N = 05, 50, 14, 41, 23, 32 satisfy given conditions.
Step 2 : Apply optimized approach to data structures
Tell me about yourself
Why should we hire you?
What are your strengths and weaknesses?
Tip 1 : Keep yourself align with mock interviews
Tip 2 : Practice more and more speaking

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?