Tip 1 : Practice Java programs of the day site interview questions(that's all you need to practice) which is having 50+ questions
Tip 2 : read api methods and their differences nd various response codes mostly 4xx nd 5xx
Tip 3 : prepare SQL queries mostly joins
Tip 1 : write summary overview nd highlights your key skills
Tip 2 : Should read AWS from Javat point nd mention atleast any cloud experience ie :gcp,AWS,azure
They have asked to write Java programs for finding list of angrams present in an array nd some of api response codes nd there uses plus various rest methods nd their differences



1. Both STR and PTR consist of English uppercase letters.
2. Length of string 'STR' will always be greater than or equal to the length of string ‘PTR’.
3. In case, there is no anagram substring, then return an empty sequence.
4. In case of more than one anagrams, return the indices in increasing order.
1-first I wrote a program to find weather two strings are anagram or not.
2- then I moved to 2 nd steps ie: how to store as there can be many different anagra
3-then I thought of map but first I stored single key value string in map in that case we can't capture the results
4-then I took map with string as key and value as list of string
It was dynamic programming round have been asked Java programs



1-first I wrote program to add simple digit with any carry forward
2-then I moved to calculate carry forward cases
3-in that case I did mod if digit is more than 10
4-problem was I was iterating from last digit and printing single digit post added Carrey forward
5-but if it came to first digit we need to write it as it is ie:6+7=13 so have to print as complete 13 not as 3
Have been asked to explain existing projects and what extraordinary you have done
What extraordinary have you done is your current company
Tip 1: Explain anything has been done in your company which you think u know very well
Tip 2: If you don't have such get it from your colleagues
Tip 3: It is must and asked in most of the companies

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?