Engineering Manager round, coding task (you handwrite code on an electronic whiteboard). Write a function that accepts 3 parameters (numbers a, b, c). If a is bigger than b, write something to console. If a is bigger than b and c, write something else in console. If it is smaller than c but bigger than b, write another message to console.
Utilisateur anonyme
Don't try to come-up with something generic - just write 3 lines of "if" conditions. This is what expected from you. Then you'll need to give some test cases for this, the whole thing should not take more than 5 minutes.