Tip 1 : Always first discuss the problem statement with the interviewer and ask multiple questions, interviewer is very helpful, they will explain you everything
Tip 2 : Practice a mock interview before the actual interview and speak whatever you are thinking while solving the question in the interview. The interviewee wants to know your thought process while solving the problem.
Tip 3 : Practice the STAR technique while explaining any thing.
Tip 4 : Do not fake anything. Interviewers are very smart they will easily know if you are faking anything.
Tip 1: Add at least two college projects to your resume and your internship work
Tip 2: Do not put false anything in your resume. The interviewer will go deeper into the resume and will ask about everything that you have mentioned in your resume.
The first round was of online aptitude test conducted on AMCAT platform, there were four sections in this round
Verbal - 18 mins
Quantitative - 16 mins
Logical - 14 MCQ in 14 Mins
Coding - There where 45 minutes give to solve coding questions.
Essay - 20 Mins
You are given ‘X’ as 20 and ‘Y’ as 15. The greatest common divisor, which divides both 15 and 20, is 5. Hence the answer is 5.
If number of lines = 3, then pattern ->
1*2*3
7*8*9
4*5*6
If number of lines = 4, then pattern ->
1*2*3*4
9*10*11*12
13*14*15*16
5*6*7*8
It was a technical round
The interviewer asked me to write code to print the factorial of a number using recursion.
They asked about topics like exception handling, opps, and multiple inheritances in Java.
They then asked me about my project work and the technologies I used
Consider if ‘N’ = 4, the Factorial of 4 will be the product of all numbers from 1 to 4, which is 1 * 2 * 3 * 4 = 24. Hence, the answer is 24.
Factorial of a non-negative integer, is multiplication of all positive integers smaller than or equal to n. For example factorial of 6 is 6*5*4*3*2*1 which is 720.
n! = n * (n-1)!
n! = 1 if n = 0 or n = 1
This round was with the HR of the company
Projects and Internships in college.
Why do you want to join Wipro ?
Why should we hire you?
Are you ok with any job location in India?
Tell me about your hobbies
Tell me about your five year goal
Tip 1 : Practice all the HR round questions before the interview.
Tip 2 : You can refer interview experience and prepare answers for common questions asked.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which traversal uses a queue as its primary data structure?