Tip 1 : Need to brush up with core concepts like Core Java concepts mostly focused on Collection framework, Array, String based problem questions
Tip 2 : Focused on Data Structures Algorithm Mainly Sorting Techniques, Trees, & graph
Tip 3 : Update your skills set in your resume as per your knowledge & experience.
Prepare for core concepts such as basic core Java, Opps concept & DSA
Tip 1 : Prepare with skills set which your are mentioned in the CV and brush up all the skills properly.
Tip 2 : Well Explain about your previous projects also explain about your roles & contribution in the project majorly force on skills set.


replace(char oldChar, char newChar)
replaceAll(String regex, String replacement)
replace(CharSequence target, CharSequence replacement)
replaceFirst(String regex, String replacement)
public static String removeCharAt(String str, int index) {
String str1 = str.substring(0,index);
String str2 = str.substring(index+1,str.length());
return str1+str2;
}
Tip 1 : Introduction must be prepared before HR round.
Tip 2 : Tell them genuine experience & pay slips also tell them I'm looking forward to learning and growing career
Tip 3 : Show them positive attitude always and ready to join company as soon as possible.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?