Tip 1 : Study the concepts of OOPS well.
Tip 2 : Do some basic coding questions like searching sorting.
Tip 3 : For every topic study the top 50 interview questions from Edureka.
Tip 1 : Only mention the projects that you are thorough with.
Tip 2 : Don't crowd your resume. Be specific to the the topics that you can answer well.
There was a coding question for 50 marks which had two given test cases and 15 hidden test cases. With some basic knowledge of coding you'll be able to do it.
25 questions were there for 1 mark each on all the concepts of Computer Science.



153 = 1^3 + 5^3 + 3^3.
Therefore 153 is an Armstrong number.
class Solution {
static String armstrongNumber(int n){
int temp = n;
int arm = 0;
while(n!=0) {
int rem = n%10;
arm += Math.pow(rem,3);
n = n/10;
}
if(arm == temp) {
return "Yes";
}
else {
return "No";
}
}
}
I got the time slot of noon 12. The interviewer was very friendly. Asked some casual questions like how are you doing in these COVID Times and about hobbies to make me comfortable. Then asked me to give my introduction.Then proceeded with the technical questions.
Asked me about the concepts of OOPS. Asked me to implement classes and objects. Then asked me to implement inheritance. Asked the difference between overloading and overriding and asked to implement both. Asked some basic questions on SQL like difference between drop delete and truncate. Then shifted to data structures. Didn't make me code any but asked as how many data structures are there in total. Name Them. Then he shifted to DBMS. Asked me about normal forms. After this he was satisfied and asked me if I had any questions for him.
It was a simple round where the HR asked about my interests and hobbies. Asked my preferred location and explained about my compensation.
What are your hobbies.
Where are you from.
Which location would you like to work in.
Tip 1 : Just be confident in answering your questions.
Tip 2 : Also be careful while answering.
Tip 3 : Answer to the point. Don't try to act oversmart.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?