I applied online. The process took 3 days. I interviewed at PropertyMe (Melbourne) in Oct 2021
Interview
The interview was casual but strange and that is the best way to put it.
Despite advertising for a Full Stack Developer they were asking questions that were more appropriate if they were interviewing for someone to write for them the latest version of the C# .net core text book.
If the answers didn't align precisely with what they had in mind they would correct you on the spot.
IMHO anyone with real experience will be exposed to lots of different application structures and coding styles and will be flexible enough to adapt to the coding style guides in use in a dev house.
It is expected that a potential employer would understand that but that understanding or recognition was missing. I was expected to know already how they structure and style their code.
Interview questions [1]
Question 1
Modify their template application (they send you a link to the repo) to include an api controller to handle requests where you receive 2 inputs to an api call.
An integer that represents a position in a sequence and
a string that represents an expected answer.
If the position input is divisible by 3 ( )then the expected answer is "foo"
If the position input is divisible by 5 (5, 10...) then the expected answer is "bar"
If the position input is divisible by both 3 and 5 (i.e. 15, 30 ...)then the expected answer is "foobar"
If the expected answer matches the supplied answer then return 200 OK otherwise return 400 badRequest
The test must be conducted while they are shoulder surfing and you must do it despite being questioned and corrected the entire way through if they observe that you're not doing it the way they want it written.
You are not given any coding style guide. You must guess the correct one.
You have 20 minutes to do it.