What single question or problem allows you to most effectively assess a job applicants' understanding of the C language during an interview?
|
5
|
|||||||||||||||||||||
|
closed as subjective and argumentative by gnovice, Kinopiko, Assaf, SilentGhost, ChssPly76 Nov 3 at 22:26 |
|
|
Just ask a question that uses If they understand pointers well then they understand C. Update: You can also look here: http://www.techinterviews.com/c-interview-questions-and-answers-3 |
||||||||||||||
|
|
|
|
||||
|
|
|
As above with |
||
|
|
|
|
You need to have them write a program that can be done in an hour or two. That's the only way. I can certainly think of lots of C trivia questions that someone familiar with the language ought to know. The problem is, no matter how good they are, they run into the brick wall of "you can't interview your way into hiring a developer". The only to hire a developer is to see if they can develop, i.e., give them a programming test. Still, you may want to prescreen people. Giving the test is time-consuming and labor-and-facilities intensive. Here are some ideas:
|
||||||
|
|
|
Those last two are good ISO-standard questions to see if they really know the intricacies of C rather than just an implementation. Of course, one question is useless in the real world so keep that in mind. And you should balance the tech questions with the team questions. It doesn't matter how good someone is with the C language if they're a sociopath. |
|||
|
|
|
|
And don't forget to ask the questions like these too:
... Just to test he aware of standards and whats not it too. |
||||
|
|
|
"Write a strcpy() which performs according to the ANSI C standard." Failure can involve:
If the interviewee throws in checks for NULL, and so on, it is only fair to ask them whether the standard C implementation does so. It is not required to do so and in general, implementations do not. Also ask them if checking for NULL prevents all possible crashes due to the possibility of being passed incorrect arguments -- the answer should be "No." They fail if they believe that the best approach is to add layers of error checking to low-level library routines which simply must be used correctly. If they believe that will be a helpful way to improve the library, they will add alot of "error correcting" code which in turn provides code paths which gently allow the erroneous code to plow forward. Nobody should care if the interviewee can't remember what strcpy() returns. This weeds out an amazing number of people who claim to know C. Automatic-Hire: The interviewee points out that |
||||||||||||||||||||
|
|
|
You can't decide wether someone has a good understanding of a language through only one question. You might just hit by chance that bit of knowledge they have. |
||||||||||||||
|
|
|
Drill him on Pointers. Additionally you can ask him to write some of the commonly used functions. Some of them are : 1) strcpy Some other questions could be : 1) Allocate a two dimensional array Dynamically.If he answers it, ask him to repeat exercise with 3 Dimensional array. Make sure he also knows how to free the allocated memory. |
|||
|
|
