Tip 1 : Prepare Company Specific
Tip 2 : Focus to contribute in open source which gives silver lining to your resume.
Tip 3 : Prepare for off campus if you're from tier 2 and tier 3 college
Tip 1 : Do contribute in open source
Tip 2 : Make project in the same profile you wanted to move forward with
Interviewer given me a problem that how many times we can subtract 5 from 35.
Tip 1 : Do not rush
Tip 2 : Take your time then speak
Tip 3 : Do not get nervous
public class Main { public static void main(String[] args) { int number = 35; int subtractValue = 5; int count = 0; while (number >= subtractValue) { number -= subtractValue; count++; } System.out.println("Number of times we can subtract 5 from 35: " + count); } }