Tagged Questions

17
votes
13answers
256 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 wa …
17
votes
8answers
414 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 impo …
2
votes
5answers
79 views

What is a good (coding) platform to use for telephone coding interview?

We are going to interview some candidates over the phone and we need the candidate to write code (pseudo code). Obviously, asking the candidate to read the code out loud to us over …
5
votes
13answers
200 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 …
3
votes
10answers
211 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?
2
votes
9answers
540 views

Math questions at a programmer interview?

So I went to an interview at Samsung here in Dallas, Texas. The way the recruiter described the job, he didn't make it sound like it was too math-oriented. The job basically involv …
8
votes
12answers
608 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.
1
vote
7answers
82 views

How to interview a customer to take requirements?

I currently work as a PeopleSoft technical consultant, a title that, in practice, means that I'm a PeopleCode programmer. Documents with specifications somehow arrive to my desk an …
5
votes
17answers
684 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 …
1
vote
6answers
77 views

What types of topics, and questions can be expected when interviewing for entry level programming/IT positions?

I am in my senior year, and I am preparing for some interviews. I am wondering what I should review, and what I should prepare for when I'm getting ready for these interviews. Wha …
5
votes
7answers
308 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 intervie …
0
votes
4answers
66 views

Is it feasible to interview a person for testing lead position by development lead only?

Is it feasible to interview a person for testing lead position by development lead only. and base on their feedback hire the person for the said position. Testing is something diff …
7
votes
5answers
250 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 …
1
vote
2answers
107 views

What is important to put on a resume when searching for an entry level job in Software Development? [closed]

Possible Duplicates: What is required knowledge when applying for an entry level or junior programmer position? (think “first job”) What should go on a resume fo …
4
votes
8answers
279 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 si …

1 2 next
15 30 50 per page