Tip 1 : Practice Atleast 250 Questions from geeks from geeks and coding ninjas
Tip 2 : Ex- Do atleast 2 good projects
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume and be confident.
2 coding questions






Input: 'list' = [1, 2, 3, 4], 'k' = 2
Output: 2 1 4 3
Explanation:
We have to reverse the given list 'k' at a time, which is 2 in this case. So we reverse the first 2 elements then the next 2 elements, giving us 2->1->4->3.
All the node values will be distinct.
1 coding question



After a brief introduction, he discussed my projects and internships.
Then, he asked why I was interested in joining PayPal, the team I’d like to work with, strengths and weaknesses etc. Wasn’t a very pleasant round, he seemed a strict person.
I had a research internship stated, so wanted to know why I want to work in corporate world.
The only thing is to practice as many questions as you can from GfG, Leetcode, etc.
Do PayPal tagged questions from coding ninjas
Staying calm and confident during the interview helps a lot.

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?