J'ai postulé en ligne. Le processus a pris 3 jours. J'ai passé un entretien chez CoinDCX (Mumbai) en mai 2022
Entretien
Interview process consisted of 3 rounds.
1. DSA coding
2. Machine coding
3. Culture fit round (This is a non-tech round)
DSA round - Just practicing easy/medium level leetcode questions would be enough to clear this.
Machine Coding - Would be required t write correct, modular and SOLID compliant code within 90 mins.
Culture fit - This is more of a conversation and not much of interview kind of round. You get to know the product, you get to meet an EM from the company who will be your potential EM. They would ask things like what do you want to be doing in your career, etc.
Questions d'entretien [1]
Question 1
1. Given an array of tuples, each tuple contains 3 elements - number of friends, pickup stop number and drop stop number, find out if it is possible to pick up and drop all friends to their destinations in the entire array.
2. Code up an app like splitwise.
Dear candidate, we are glad that we could give you a positive experience interviewing with us, we look forward to building the future with you.
Expérience négative
Entretien difficile
Candidature
Le processus a pris 1 semaine. J'ai passé un entretien chez CoinDCX (Bengaluru) en févr. 2025
Entretien
I was quick process interviewer called and told me everything about the process.
total 4 rounds of interview was there.
1. DSA + JS ( only js medium level question and some theoretical question )
2. LLD (in React )
3. System design
4. Hiring manager round
Questions d'entretien [6]
Question 1
1. Scope and Hoisting
Example:
var x = 10;
function outer() {
var x = 20;
function inner() {
x++;
console.log(x); // NaN (due to hoisting)
var x = 30;
console.log(x); // 30
}
inner();
}
outer();
J'ai postulé en ligne. Le processus a pris 2 semaines. J'ai passé un entretien chez CoinDCX (Bengaluru)
Entretien
Smooth interview process.. the whole process completed in about two weeks..
First two rounds were technical around javascript.. Then there was managerial round..
The interviewers were also very helpful and would give u hints incase you are stuck
Questions d'entretien [1]
Question 1
Basic and advanced javascript like currying, closures etc.