31
votes
13answers
772 views
Should i ask the interviewer if i can speak to other developers?
I've always thought that whether i loved or hated a role that i would be objective enough to help out a fellow dev if he ever wanted general info about a workplace/role - say he was in for an …
19
votes
8answers
631 views
What questions should a JavaScript programmer be able to answer?
Suppose a company is going to hire JavaScript coders. I wonder what question should this company use to properly evaluate them. Even though general programming skills are more important than …
14
votes
15answers
936 views
From an interview: Removing rows and columns in an n×n matrix to maximize the sum of remaining values
Given an n×n matrix of real numbers. You are allowed to erase any number (from 0 to n) of rows and any number (from 0 to n) of columns, and after that the sum of the remaining entries is computed. …
8
votes
12answers
708 views
best C++ book for interview?
what is the best C++ book to prepare a advanced C++ interview.
I would like a book with very good summary on concepts and tricks asked in interviews.
7
votes
8answers
573 views
Is it fair to ask about by-reference arguments as a C interview question? [closed]
Someone I know does interviewing for C programmers. One of the questions he asks is something to the effect of, "How do you pass an argument by reference in C?"
The expected answer is along the lines …
7
votes
5answers
289 views
Online Developer Testing for Pre-Screening Candidates
Are there are any good online developer testing sites for pre-screening candidates? I know the freelance site ELance has a "certification" system where candidates can take tests on various …
7
votes
4answers
342 views
Interviewing for a Team Lead
So I'm leaving my job for a role at another company and before I leave I have one last task: I must hire a replacement for myself <gulp>. The reason for the <gulp> is that this is the last …
6
votes
6answers
118 views
On the job communication [closed]
Lets say you're an interviewer, and a coder shows up for an interview. He meets all the criteria you're looking for, but he is deaf and wears hearing aids. Despite his competency at face to face …
5
votes
13answers
229 views
Which is more important - experience or certifications?
Which is more important -
Certifications
Real time experience
In a interview if you have to select a candidate from a list of 2 candidates then whom would you select
the one with real time …
5
votes
7answers
324 views
What is wrong with this C function to find the endianness of a machine at runtime?
This is what I offered at an interview today.
int is_little_endian(void)
{
union {
long l;
char c;
} u;
u.l = 1;
return u.c == 1;
}
My interviewer insisted that c …
5
votes
17answers
743 views
Why do interviewers ask advanced questions?
I've been programming for a few years in C# and XML. I used only the basics of those languages and have survived on the web for info like arrays and text manipulations. But when I am get interview, …
4
votes
10answers
273 views
Interviewers expect job candidates for application development jobs to know hexadecimal arithmetic
Does anyone think it is silly for interviewers to expect potential Software Engineers specializing in application development or UI to know hexadecimal arithmetic?
4
votes
8answers
391 views
Design patterns and interview question
When I was learning to code, I read up on the design patterns like a good boy. Long after this, I started to actually understand them.
Design discussions such as those on this site constantly try to …
3
votes
7answers
183 views
Would you bring up morally gray projects during an interview? [e.g. porn or torrents] [closed]
Possible Duplicate:
Would you put an adult site on your resumé?
Question pretty much sums it up. If you're worked on a pornographic, torrent, warez, etc. website(s) would you bring it …
3
votes
13answers
279 views
How much should I “stretch the truth” on my resume? [closed]
Hi,
I'm just about to graduate and was wondering how much I should um... "stretch the truth" on my resume. Obviously, flat-out lying is probably a bad idea since (as well as many other reasons) it …
