Tip 1 : Prepare the basics of Computer Subjects
Tip 2 : Practice basic DSA questions
Tip 3 : Be Confident while preparing for the interviews
Tip 1 Have at least one project and computer subjects
Tip 2: Be honest; always write what you can deliver during the interview
This round held in moring shift 9 AM. Its an aptitude and english essay test, It's a easy round comprised of quant , aptitude and english.
Mostly questions were from the aptitude part in this round
Timing : 11 AM
There were two questions in this round
Input: 'n' = 1986.
Output: [14, 10]
Explanation: Even digits are 8 & 6, and odd digits are 1 & 9. The sum of even digits = 14, and the sum of odd digits = 10.
Timings :11 AM
It was a communication round and the questions were from the jumble words , short sentences and stories . We have to listen and then give correct answer.
Timings: 02:00 PM
F(n) = F(n-1) + F(n-2),
Where, F(1) = F(2) = 1.
For ‘N’ = 5, the output will be 5.
The Nth Fibonacci Number can be found using the recurrence relation shown above:
if n = 0, then return 0.
If n = 1, then it should return 1.
For n > 1, it should return Fn-1 + Fn-2
What technology I used in my project and why ?
Did any conflict happend with the team during the development of the project and how did I resolved it?
Tip 1: Before the interview prepare well for your project.
Tip 2: Look for technology specific most asked questions from the internet
Tip 3: Be confident
Timings : 02:00 PM
Introduction
My hobbies
If i held any Leadership position during college
Why I want to join this company ?
What are my expectation from this job ?
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which array operation has O(n) worst-case time complexity?