Tip 1 : Focus on the question instead of thinking the matching solution to it that you might have solved, always try to start afresh when any coding Q comes.
Tip 2 : Focus on basic questions and fundamentals questions more instead of going to advanced DS
Tip 3 : Dont write crap in resume, be confident in what you write.
Tip 1 : Keep it to only one page strict with only relevant information.
Tip 2 : Add you picture as well for this particular company.
Basics of CS and 2 DSA



Input:
'num1' : 1 -> 2 -> 3 -> NULL
'num2' : 4 -> 5 -> 6 -> NULL
Output: 5 -> 7 -> 9 -> NULL
Explanation: 'num1' represents the number 321 and 'num2' represents 654. Their sum is 975.
Optimised approach



In cases where the dividend is not perfectly divisible by the divisor, you are required to return the integer value of the quotient which is closer to zero.
For example - If the answer is '8.34', we return the integer part, i.e., '8'. Also, If the answer is '-2.67', we return the integer part, i.e., '-2'.
Assume we're dealing with a system that can only store integers in the 32-bit signed integer range: [2^31, 2^31-1]. If the quotient is higher than 2^31 - 1, return 2^31 - 1; if it is less than -2^31, return -2^31.
If the answer is ‘9.333’, then return ‘9’, or if the answer is ‘-8.123’, then return ‘-8’.
Brute force
It was all about OS and DBMS
Almost all basics that we read in engineering
It was generic with system design questions. SAP usually does not ask System Design Qs to freshers at least but I was asked :(
But I somehow managed as I had read about those questions, so lucky.
How doese LinkedIin connection works.
1st, 2nd, 3rd connections - all those things, how can we implement, what DS and all.
Standard questions, pretty chill round.
Why SAP?
Why not higher studies?
Where do you see yourself in 5 years?
Some situation based questions
One simple aptitude question

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?