Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
This was the first technical round based entirely on java.



Idea is to get the sum of given two-variable ‘X’ and ‘Y’ in an ‘X’ = ‘X’ + ‘Y’.
Value of swapped ‘Y’ can get by ‘X’ - ‘Y’ = (‘X’ + ‘Y’) - ‘Y’ = ‘X’
Value of swapped ‘X’ can get by ‘X’ - ‘Y’ = (‘X’ + ‘Y’) - ‘Y’ = (‘X’ + ‘Y’) - ‘X’ = ‘Y’
The current value of ‘Y’ is the initial value of ‘X’
Suppose ‘X’ is 10 and ‘Y’ is 20 then
‘X’ = ‘X’ + ‘Y’ = 20+10’
Swapped value of ‘Y’ is ‘X’- ‘Y’ = 30-20 = 10’
And the swapped value of ‘X’ is ‘X’ - ‘Y’ = 30-10 = 20’
So ‘X’ is 20 and ‘Y’ is 10
Return swapped ‘X’ and ‘Y’.
What is the difference between JDK, JRE, and JVM?
What is the static method?
What is Agile Methodology?
Second technical round based entirely on Selenium.
What is an action class?
Selenium webdriver
TestNG
Your automation framework
Selenium exception (with full name)

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