I applied online. The process took 5 days. I interviewed at Synechron (Pune) in Mar 2024
Interview
The first round is initial screening, job location preferences, work from the office, current expertise and contributions, and skill sets, it was a telephonic round by HR and then eligible for the second round which is Technical Round I,
They have an interview process and I understand that is
1. Screening round
2. Technical round I
3. Technical Round II
I reached so far
what is currying in the javascript
Currying is a technique used to transform a function with multiple arguments into a sequence of nested functions, each taking a single argument.
The curried function returns a new function for each argument until all arguments are provided, and then it finally returns the result.
This technique allows for partial application of a function, meaning you can pass some arguments now and the rest later.