Tip 1: Focus on Aptitude.
Tip 2: Try to solve pseudocode and simple DSA problems.
Tip 3: Read about the fundamentals of networking and cloud.
Tip 1: Add DSA to your resume.
Tip 2: Include some good projects on your resume.
It is the first round which consists of 90 MCQ questions. We have to solve those questions in 90 minutes. Majorly it happens in college itself.
Which of the following statements is exit controlled loop?
A) for
B) while
C) do-while
D) if-else
Ans:- C) do-while
Which of the following series will be printed by the given pseudocode?
Integer a, b, c
Set b = 4, c = 5
for(each a from 2 to 4)
print c
b = b - 1
c = c + b
end for
Options:-
A) 5 8 10
B) 1 3 6
C) 8 9 10
D) 3 6 9
Ans:- 5 8 10
Firstly variables a, b, and c are initialized, then b and c are assigned values 4 and 5 respectively.
Now run a loop from 2 to 4, in each iteration b is decremented by 1, and c is incremented by b.
In the first iteration print c = 5 value of b is decremented by 1 i.e. b = 3, c is incremented by b i.e. c = 5
In the second iteration print c = 8 value of b is decremented by 1 i.e. b = 2, c is incremented by b i.e. c = 8
In the third iteration print c = 10 value of b is decremented by 1 i.e. b = 1, c is incremented by b i.e. c = 10
Thus the final series is 5, 8, 10
What will be the output of the following pseudo-code?
#include
int fun(int x, int y);
int main()
{
int i,n;
i=5;
n=7;
int f = fun(5,7);
printf("%d", f);
}
int fun(int x, int y)
{
if(x<=0)
return y;
else
return(fun(x-1,y-1));
}
Options:-
A) 0
B) 1
C) 2
D) 3
Ans :- 2
Which protocol is used to transfer web pages from a server to a client device?
A) SMTP
B) SSH
C) POP
D) HTML
E) HTTP
Ans:- E) HTTP
Which of the following is not an essential characteristic of cloud
computing?
(a) On-demand self-service
(b) Static environment
(c) Resource pooling
(d) Rapid elasticity
Ans:- B) Static environment
Which function is used to calculate the sum of a range of cells?
Two trains running in opposite directions cross a man standing on the platform in 27 seconds and 17 seconds respectively and they cross each other in 23 seconds. The ratio of their speeds is:
A) 1 : 3
B) 3 : 2
C) 3 : 4
D) None of these
Ans:- B) 3:2
Choose the correct synonym of the given word i.e., Admit:-
A) Confess
B) Lively
C) Too
D) Quantity
Ans:- A) Confess
Identify the correctly spelt word:
A) Occasion
B) Occassion
C) Occation
D) Occasoin
Ans:- A) Occasion
There were 2 coding questions that we had to solve in 45 minutes. The difficulty level of the questions was easy to medium. This round was also held in college.



1. Any left parenthesis '(' must have a corresponding right parenthesis ')'.
2. Any right parenthesis ')' must have a corresponding left parenthesis '('.
3. Left parenthesis '(' must go before the corresponding right parenthesis ')'.
4. '*' could be treated as a single right parenthesis ')' or a single left parenthesis '(' or an empty string.
5. An empty string is also valid.



We can solve this problem using simple recursion. We can compare the last characters of s1 and s2. While comparing the strings s1 and s2, there are two possibilities:
The communication assessment is conducted in this round. There are different sections in this round, such as reading, storytelling, sentence building, and open-ended questions.
There were 15-20 questions in each of the above-mentioned topics.
During this round, make sure to sit in a quiet place while taking the assessment.
This is a technical & HR interview. My interview was mainly on projects, DBMS &HR questions.
What is redundancy and how we can reduce redundancy? (Learn)
What are the normalization forms? (Learn)
Difference between stack & queue. (Learn)

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: