Candidatei-me online. O processo levou 2 semanas. Fiz uma entrevista na empresa Capitol Tech Solutions.
Entrevista
Two rounds, first was a behavioral interview. Second was a technical interview involving questions regarding technical expertise and things you've built in the past. Was also asked questions about technologies I have no experience with yet and whether I'd be open to learning the .NET framework. The interviewers placed high preference on back-end development as being your main task if hired, so expect that to be your main role if going for anything software development. The main part you likely care about is the coding question. There were actually 2 problems I was given to solve. One was a brain teaser type of question to test logical thinking and the other was a coding question regarding printing out a tree that follows a certain pattern. Be aware, you will only be given a pen and paper. You cannot use any technology to write your solution (no backspacing, no editing) so make sure you think out your solution well or you'll become instantly unorganized if you make any mistakes at all.
Perguntas de entrevista [2]
Pergunta 1
Brain teaser: You have three boxes in front of you, and each box has a label on it. However, all the labels are incorrect. One box contains gold, one box contains silver, and one box contains a mixture of gold and silver. You are allowed to pick one item from one box. How can you determine which box contains the gold, which one contains silver, and which one contains the mixture, knowing that all the labels are incorrect?
Write a function that outputs a tree that looks like the following: * *** ***** ******* ********* The input for this function is an integer. This integer defines how many rows the tree should have (in this example, 5). Make sure the tree follows any patterns you see. If you want to keep the experience realistic, try only writing the code on a piece of paper using only a pen. No editor. No backspacing.