2
votes
13answers
228 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 …
5
votes
6answers
106 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 …
2
votes
6answers
161 views
Any great books of algorithm puzzles to practice whiteboard coding with?
I'm looking to get some practice coding solutions to algorithm puzzles on a whiteboard. A friend is going to read puzzles to me (as if he were interviewing me), and I'll solve them …
2
votes
6answers
263 views
Why do I lately have to be a master of big-O, sorting, searching, trees, graphs, large scale efficient data processing algorithms? [closed]
I haven't interviewed for about a decade. Back when I got the job it was mostly about how well I knew a programming language, where my experience was, what I am good at/bad at, som …
0
votes
1answer
74 views
What was the most difficult job interview question you were asked (and you could not even say a word)? [closed]
Hi,
What was the most difficult job interview question you were asked (and you could not even say a word)?
14
votes
13answers
800 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 entr …
0
votes
11answers
325 views
Preparation for a c++ interview
i have to prepare for an interview in C++ technology.
could you please drop in your suggestions and recommendations about how to start and what are the basic topics that i have to …
-4
votes
2answers
241 views
Things a newbie should learn to get a job at Google [closed]
Hi I'm a newbie to the IT field coming from a non-cs background. I always had my interests in CS & I have basic technical knowledge that got me where I am now. I'd like to try …
2
votes
6answers
128 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 …
1
vote
7answers
89 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 …
1
vote
7answers
98 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 …
30
votes
13answers
712 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 …
18
votes
8answers
529 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 …
5
votes
17answers
721 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 …
5
votes
7answers
316 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 …
