Vague interview take-home project assignment
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;
up vote
0
down vote
favorite
I am looking for a job abroad. There are companies that hire from abroad, and have a practice of assigning homeworks.
The problem is that the assignment is extremely vague. There are just 3 to 5 sentences about the requirements, expected quality level and such. And these are as vague as:
âÂÂ> Whilstâ â weâ â encourageâ â youâ â to useâ â theâ â newâ â Javaâ â 8 â â Streamâ â APIsâ â andâ â lambdasâ â tryâ â toâ â avoidâ â codeâ â thatâ â isâ â moreâ â functionalâ â than objectâ â oriented.âÂÂ
Or
â Makeâ â thingsâ â asâ â simpleâ â asâ â possibleâ â andâ â asâ â complicatedâ â asâ â needed
Or
â Theâ â goal isâ â notâ â toâ â coverâ â everyâ â potentialâ â levelâ â ofâ â abstractionâ â youâ â mayâ â needâ â inâ â theâ â nextâ â 5 â â yearsâ â butâ â the levelsâ â youâ â thinkâ â makeâ â senseâ â todayâ â givenâ â theâ â currentâ â scopeâ â ofâ â theâ â application.
When I asked for the scope, they told me (towards the end of a good and friendly Skype interview) that "It should be under 8 hours, 4 hours if you're experienced".
No mentions of whether, how and to what extent the code should be tested; no coding style, no formatting. Some companies don't even tell target language/platform version preference. When you ask, the person from (I assume) HR tells you that would be "telling you the solution".
When I'm done with the projects, the response is, for some companies, "You're a rock star, we want you", and for others, "we expected more" and end of communication. And I followed roughly the same standards. Once when I asked for some more explanation, I only get an email with bullets:
- the project is not well structured
- code is not clean
- Spring usage
- API design
When I asked again what they mean, since other companies take my code style as good one, I get:
In my opinion it always makes sense to write proper code.
You were asked to provide a decent project to show you coding skills which we then can review. This is about style, structure, data structures, api design. This was all taken into account when reviewing your project assuming you did your best.
Again, just general terms, no explanation. I gave up.
(Let's put aside the fact that they wanted quality level matching "currentâ â scopeâ â ofâ â theâ â application", which is - a 4 hour project to be trashed right after the hiring process - and now, they want "my best".)
I assume this site is visited by some recruiters, too.
How can I make these people to give me more specific assignments, where they would actually write what they want?
When I try to ask for them, they resist, and asking repeatedly feels like I am complicating things even at the start. But not asking puts me to a wheel of fortune that I will use the style that the reviewer likes. Such like:
- What version of Java should it be coded for?
- Should I use functional style?
- Should I use immutable style?
- Should I optimize rather for performance or for readability?
- Should I prefer classes for all domain models or are Java collections enough where practical?
- Should I use Optional<...> or is it okay to stick with null's?
- Should I write getters/setters explicitely or is it ok to use Lombok?
- Should I have an interface for each service if I write services?
Additionally:
Should I write unit tests and integration tests? (Not mentioned in the PDF.)
interviewing
New contributor
add a comment |Â
up vote
0
down vote
favorite
I am looking for a job abroad. There are companies that hire from abroad, and have a practice of assigning homeworks.
The problem is that the assignment is extremely vague. There are just 3 to 5 sentences about the requirements, expected quality level and such. And these are as vague as:
âÂÂ> Whilstâ â weâ â encourageâ â youâ â to useâ â theâ â newâ â Javaâ â 8 â â Streamâ â APIsâ â andâ â lambdasâ â tryâ â toâ â avoidâ â codeâ â thatâ â isâ â moreâ â functionalâ â than objectâ â oriented.âÂÂ
Or
â Makeâ â thingsâ â asâ â simpleâ â asâ â possibleâ â andâ â asâ â complicatedâ â asâ â needed
Or
â Theâ â goal isâ â notâ â toâ â coverâ â everyâ â potentialâ â levelâ â ofâ â abstractionâ â youâ â mayâ â needâ â inâ â theâ â nextâ â 5 â â yearsâ â butâ â the levelsâ â youâ â thinkâ â makeâ â senseâ â todayâ â givenâ â theâ â currentâ â scopeâ â ofâ â theâ â application.
When I asked for the scope, they told me (towards the end of a good and friendly Skype interview) that "It should be under 8 hours, 4 hours if you're experienced".
No mentions of whether, how and to what extent the code should be tested; no coding style, no formatting. Some companies don't even tell target language/platform version preference. When you ask, the person from (I assume) HR tells you that would be "telling you the solution".
When I'm done with the projects, the response is, for some companies, "You're a rock star, we want you", and for others, "we expected more" and end of communication. And I followed roughly the same standards. Once when I asked for some more explanation, I only get an email with bullets:
- the project is not well structured
- code is not clean
- Spring usage
- API design
When I asked again what they mean, since other companies take my code style as good one, I get:
In my opinion it always makes sense to write proper code.
You were asked to provide a decent project to show you coding skills which we then can review. This is about style, structure, data structures, api design. This was all taken into account when reviewing your project assuming you did your best.
Again, just general terms, no explanation. I gave up.
(Let's put aside the fact that they wanted quality level matching "currentâ â scopeâ â ofâ â theâ â application", which is - a 4 hour project to be trashed right after the hiring process - and now, they want "my best".)
I assume this site is visited by some recruiters, too.
How can I make these people to give me more specific assignments, where they would actually write what they want?
When I try to ask for them, they resist, and asking repeatedly feels like I am complicating things even at the start. But not asking puts me to a wheel of fortune that I will use the style that the reviewer likes. Such like:
- What version of Java should it be coded for?
- Should I use functional style?
- Should I use immutable style?
- Should I optimize rather for performance or for readability?
- Should I prefer classes for all domain models or are Java collections enough where practical?
- Should I use Optional<...> or is it okay to stick with null's?
- Should I write getters/setters explicitely or is it ok to use Lombok?
- Should I have an interface for each service if I write services?
Additionally:
Should I write unit tests and integration tests? (Not mentioned in the PDF.)
interviewing
New contributor
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am looking for a job abroad. There are companies that hire from abroad, and have a practice of assigning homeworks.
The problem is that the assignment is extremely vague. There are just 3 to 5 sentences about the requirements, expected quality level and such. And these are as vague as:
âÂÂ> Whilstâ â weâ â encourageâ â youâ â to useâ â theâ â newâ â Javaâ â 8 â â Streamâ â APIsâ â andâ â lambdasâ â tryâ â toâ â avoidâ â codeâ â thatâ â isâ â moreâ â functionalâ â than objectâ â oriented.âÂÂ
Or
â Makeâ â thingsâ â asâ â simpleâ â asâ â possibleâ â andâ â asâ â complicatedâ â asâ â needed
Or
â Theâ â goal isâ â notâ â toâ â coverâ â everyâ â potentialâ â levelâ â ofâ â abstractionâ â youâ â mayâ â needâ â inâ â theâ â nextâ â 5 â â yearsâ â butâ â the levelsâ â youâ â thinkâ â makeâ â senseâ â todayâ â givenâ â theâ â currentâ â scopeâ â ofâ â theâ â application.
When I asked for the scope, they told me (towards the end of a good and friendly Skype interview) that "It should be under 8 hours, 4 hours if you're experienced".
No mentions of whether, how and to what extent the code should be tested; no coding style, no formatting. Some companies don't even tell target language/platform version preference. When you ask, the person from (I assume) HR tells you that would be "telling you the solution".
When I'm done with the projects, the response is, for some companies, "You're a rock star, we want you", and for others, "we expected more" and end of communication. And I followed roughly the same standards. Once when I asked for some more explanation, I only get an email with bullets:
- the project is not well structured
- code is not clean
- Spring usage
- API design
When I asked again what they mean, since other companies take my code style as good one, I get:
In my opinion it always makes sense to write proper code.
You were asked to provide a decent project to show you coding skills which we then can review. This is about style, structure, data structures, api design. This was all taken into account when reviewing your project assuming you did your best.
Again, just general terms, no explanation. I gave up.
(Let's put aside the fact that they wanted quality level matching "currentâ â scopeâ â ofâ â theâ â application", which is - a 4 hour project to be trashed right after the hiring process - and now, they want "my best".)
I assume this site is visited by some recruiters, too.
How can I make these people to give me more specific assignments, where they would actually write what they want?
When I try to ask for them, they resist, and asking repeatedly feels like I am complicating things even at the start. But not asking puts me to a wheel of fortune that I will use the style that the reviewer likes. Such like:
- What version of Java should it be coded for?
- Should I use functional style?
- Should I use immutable style?
- Should I optimize rather for performance or for readability?
- Should I prefer classes for all domain models or are Java collections enough where practical?
- Should I use Optional<...> or is it okay to stick with null's?
- Should I write getters/setters explicitely or is it ok to use Lombok?
- Should I have an interface for each service if I write services?
Additionally:
Should I write unit tests and integration tests? (Not mentioned in the PDF.)
interviewing
New contributor
I am looking for a job abroad. There are companies that hire from abroad, and have a practice of assigning homeworks.
The problem is that the assignment is extremely vague. There are just 3 to 5 sentences about the requirements, expected quality level and such. And these are as vague as:
âÂÂ> Whilstâ â weâ â encourageâ â youâ â to useâ â theâ â newâ â Javaâ â 8 â â Streamâ â APIsâ â andâ â lambdasâ â tryâ â toâ â avoidâ â codeâ â thatâ â isâ â moreâ â functionalâ â than objectâ â oriented.âÂÂ
Or
â Makeâ â thingsâ â asâ â simpleâ â asâ â possibleâ â andâ â asâ â complicatedâ â asâ â needed
Or
â Theâ â goal isâ â notâ â toâ â coverâ â everyâ â potentialâ â levelâ â ofâ â abstractionâ â youâ â mayâ â needâ â inâ â theâ â nextâ â 5 â â yearsâ â butâ â the levelsâ â youâ â thinkâ â makeâ â senseâ â todayâ â givenâ â theâ â currentâ â scopeâ â ofâ â theâ â application.
When I asked for the scope, they told me (towards the end of a good and friendly Skype interview) that "It should be under 8 hours, 4 hours if you're experienced".
No mentions of whether, how and to what extent the code should be tested; no coding style, no formatting. Some companies don't even tell target language/platform version preference. When you ask, the person from (I assume) HR tells you that would be "telling you the solution".
When I'm done with the projects, the response is, for some companies, "You're a rock star, we want you", and for others, "we expected more" and end of communication. And I followed roughly the same standards. Once when I asked for some more explanation, I only get an email with bullets:
- the project is not well structured
- code is not clean
- Spring usage
- API design
When I asked again what they mean, since other companies take my code style as good one, I get:
In my opinion it always makes sense to write proper code.
You were asked to provide a decent project to show you coding skills which we then can review. This is about style, structure, data structures, api design. This was all taken into account when reviewing your project assuming you did your best.
Again, just general terms, no explanation. I gave up.
(Let's put aside the fact that they wanted quality level matching "currentâ â scopeâ â ofâ â theâ â application", which is - a 4 hour project to be trashed right after the hiring process - and now, they want "my best".)
I assume this site is visited by some recruiters, too.
How can I make these people to give me more specific assignments, where they would actually write what they want?
When I try to ask for them, they resist, and asking repeatedly feels like I am complicating things even at the start. But not asking puts me to a wheel of fortune that I will use the style that the reviewer likes. Such like:
- What version of Java should it be coded for?
- Should I use functional style?
- Should I use immutable style?
- Should I optimize rather for performance or for readability?
- Should I prefer classes for all domain models or are Java collections enough where practical?
- Should I use Optional<...> or is it okay to stick with null's?
- Should I write getters/setters explicitely or is it ok to use Lombok?
- Should I have an interface for each service if I write services?
Additionally:
Should I write unit tests and integration tests? (Not mentioned in the PDF.)
interviewing
interviewing
New contributor
New contributor
New contributor
asked 9 mins ago
Ondra à ½ià ¾ka
1011
1011
New contributor
New contributor
add a comment |Â
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Ondra à ½ià ¾ka is a new contributor. Be nice, and check out our Code of Conduct.
Ondra à ½ià ¾ka is a new contributor. Be nice, and check out our Code of Conduct.
Ondra à ½ià ¾ka is a new contributor. Be nice, and check out our Code of Conduct.
Ondra à ½ià ¾ka is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fworkplace.stackexchange.com%2fquestions%2f122378%2fvague-interview-take-home-project-assignment%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password