Tip 1 : For cognitive round practice questions and solve the previous year questions you will easily find them on internet, I have seen most of the questions have repeated from the previous year.
For Pseudo code try solving questions from the topics such as loops, functions, array, strings, bit manipulation, etc.
Tip 2 : For coding round clear the basic concepts learn any one language and no need to cover full DSA only focus on
these topics ( Array, String, linked list) that will be more then enough also please solve previous year coding
questions before appearing, so that you will get a basic idea about, how the questions will be ask, the level of
question will be Easy to Medium only.
Tip 3 : For Interview round - Wear formal at the time appearing for an interview that will make a good impression and only
focus on the things which you have mention in your resume whether it skills or projects or trainings, all the questions
will be ask from the resume only nothing from outside. Also if you feel like you don't know answers of few questions
you can politely say on "I don't know" instead of giving wrong answers, it will create negative impact.
Tip 1 : Wear formal at the time appearing for an interview that will make a good impression and only focus on the things
which you have mention in your resume whether it skills or projects or trainings, all the questions will be ask from
the resume only nothing from outside.
Tip 2 : If you feel like you don't know answers of few questions you can politely say on "I don't know" instead of giving
wrong answers, it will create wrong impression.
This round has 2 stages : (Both were elimination rounds)
1) Cognitive & Technical Assessment
2) Coding Assessment
Upon only clearing Cognitive & Technical Assessment, candidate will be eligible for further rounds.
1) Cognitive & Technical Assessment : (90 mins)
This section contains questions from English Ability, Analytical Reasoning, Numerical Ability, Pseudo coding, Common Application and MS Office, Fundamentals of Networking, Security and Cloud.
2) Coding Assessment : (45 mins)
You are eligible for this round only if you cleared Cognitive & Technical Assessment.
It has 2 coding questions 1 simple and 1 moderate level.
Languages you can use : C, C++, Java, Python.



F(n) = F(n - 1) + F(n - 2),
Where, F(1) = 1, F(2) = 1
"Indexing is start from 1"
Input: 6
Output: 8
Explanation: The number is ‘6’ so we have to find the “6th” Fibonacci number.
So by using the given formula of the Fibonacci series, we get the series:
[ 1, 1, 2, 3, 5, 8, 13, 21]
So the “6th” element is “8” hence we get the output.
#include
using namespace std;
int fib(int n)
{
if (n <= 1)
return n;
return fib(n-1) + fib(n-2);
}
int main ()
{
int n = 9;
cout << fib(n);
getchar();
return 0;
}



If the given array is [4, 2, 9] then you should print "3 5 6 7 8". As all these elements lie in the range but not present in the array.
1. Initialize a Boolean array b[] with zero of size equals to the maximum element of the array.
2. Iterate over the given array and mark for each element in the given array mark that index as true in the array b[].
3. Now traverse the given array b[] from index arr[0] and print those index whose value is false as they are the element that is missing in the given array.
Communication Assessment: (Virtual HR Round)
1) Sentence Mastery
2) Vocabulary
3) Fluency
4) Pronunciation
Tip 1 : Never lie in front of HR
Tip 2 : Be confident, Don't Hesitate in giving answers or asking your doubts.
Tell me about Yourself.
Define your major projects and what are the key features of your project?
How do you handle tough subjects?
What are Acid Properties?
Define Normalisation.
What is the difference between tuple and list?
Tip 1 : Be honest
Tip 2 : Don't afraid to say “I don't know” if you are unaware about the answer
Tip 3 : Try to be fluent.

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: