Tip 1 : Don't be nervous while answering.
Tip 2 : listen what is being asked.
Tip 3 : if you dont know anything say you dont know and move forward to next question instead of wasting interviewers time.
Tip 1: Mention things you know about
Tip 2: Check grammatical error
The test consists of sections such as Verbal Ability, Reasoning Ability, Numerical Ability, and Programming Concepts with 2 eash level programming questions . For me timing was 2 pm to 5pm and it starts with verbal ability , we can cannot visit other sections before submitting the current one.



Type 1: Two Wheeler Road, It means only vehicles having two wheels can use this road.
Type 2: Four Wheeler Road, It means only vehicles having four wheels can use this road.
Type 3: Both two and four Wheeler Road, It means this road can be used by both type of vehicles.
1. Roads may form a cycle.
2. The cities do not have multiple same roads i.e all the roads are unique.
3. If every city cannot be reached, then return -1.
It is a simple question in which we can form 2 equations and solve it logically so based on this X will be equals to (4 * V) - W /2 . Then 2 wheeler are x and 4 wheeler are V- x .
Given a series we have to find the nth element of the series like 1 ,1,2,3,4,,9,8,2716,81,32,243,64....
Tip 1: The series was having Geometric progression for its even and odd indexs.
Tip 2: if number is even then calculate n+1/2 th power of 2.
Tip 3: if number is odd then calculate n/2 th power of 3
It has Advanced Quantitative Ability and Advanced Reasoning Ability with 2 Advance Coding .



Consider below matrix of characters,
[ 'D', 'E', 'X', 'X', 'X' ]
[ 'X', 'O', 'E', 'X', 'E' ]
[ 'D', 'D', 'C', 'O', 'D' ]
[ 'E', 'X', 'E', 'D', 'X' ]
[ 'C', 'X', 'X', 'E', 'X' ]
If the given string is "CODE", below are all its occurrences in the matrix:
'C'(2, 2) 'O'(1, 1) 'D'(0, 0) 'E'(0, 1)
'C'(2, 2) 'O'(1, 1) 'D'(2, 0) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(1, 2)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(2, 4) 'E'(1, 4)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(4, 3)
I just calculated the length of the string . Then i traverse the string and wherever str at ith index matches to the character, i increased the count by 1. And once the Traversal of the string is completed i returned the value of count. We have write the completed program.



You have to find the maximum number of ways in which Kevin can buy the chocolates if he is allowed to choose boxes in random order.
You have to find the maximum number of ways in which Kevin can buy the chocolates if he is only allowed to choose the consecutive boxes.
There are ‘Q’ queries given to you and each query can be of two types:
0 I V
1 L R
The first type has 0 as a first character that represents this is an update query in which you have to update the number of chocolates in the “Ith” box to ‘V’.
The second type has 1 as a first character that represents this is a range query in which you have to find the maximum number of ways in which Kevin can buy the chocolates in the range [L, R] if he is allowed to choose boxes in any order.
1. There is no need to maximize the number of chocolates bought by Kevin.
2. Consider 1 based indexing for queries. There must be a single query of type 1.
3. You have to take the modulo with 10^9 + 7 as the result can be very large.
Tip 1: We can count the number of zero that array has.
Tip 2: Then print all the non zeros values from the array .
Tip 3: And at last we can print the zeros equal to the count we calculated earlier.
In this round i was asked questions regarding my resume and core subject with 1 logical reasoing or puzzle based question.
What is database warehousing ?
what do you know about compiler?
What are different type of api request?
Tell me more about the projects that you made. My project was a react application that take user credential and tell about current weather of the place based on the location selected .
Tip 1: Try to engage with interviewer and communicate what you are thinking.
Tip 2: If you don’t know anything you can directly call that out.
Tip 3: Try to ask clarifying question.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: