9
votes
6answers
301 views
C# Improved algorithm
I have been asked at interview (C# 3.0) to provide a logic to remove a list of items from a list.
I responded
int[] items={1,2,3,4};
List<int> newList = new List<int> …
12
votes
23answers
879 views
What are some questions to ask when choosing between two equal programmers?
I'd like to keep this objective and non-argumentative. Read below as to why this is NOT geared towards subjective answers.
An obvious thing to look for when hiring a programmer is …
3
votes
6answers
206 views
Deleting duplicate rows from table - SQL query
I need to delete duplicate rows from the table, like I have 3 duplicate rows in the table, my query will delete 2 rows from 3 duplicated rows.
How can I get this? Please help me.
…
1
vote
5answers
171 views
How to implement a double linked list with only one pointer?
How to implement a double linked list with only one pointer?
It takes O(1) time to find the prev and next Node.
struct Node
{
int val;
Node* p;
};
0
votes
2answers
140 views
What is the output of the program? [closed]
#include <stdio.h>
int main (void) {
double nc;
for (nc = 0; getchar() != EOF; ++nc)
;
printf("%d\n", nc);
return 0;
}
190
votes
77answers
11k views
Interview question: f(f(n)) == -n
A question I got on my last interview:
Design a function f, such that:
f(f(n)) == -n
Where n is a 32 bit signed integer; you can't use complex numbers arithmetic.
I …
3
votes
2answers
134 views
Prolog - member predicate one-liner
Interview question!
This is how you normally define the member relation in Prolog:
member(X, [X|_]). % member(X, [Head|Tail]) is true if X = Head
…
-1
votes
1answer
95 views
1
vote
10answers
310 views
Simple VB or C# questions for an interview?
I'm conducting an interview in 45 min (my second ever!) for a candidate who's pretty junior and states she knows VB and C#. I do not have any experience in either of those languag …
1
vote
6answers
316 views
What does the code do?
void Send(int * to, const int* from, const int count)
{
int n = (count+7) / 8;
switch(count%8)
{
case 0: do { *to++ = *from++;
case 7: *to++ = *from+ …
133
votes
120answers
14k views
What are five things you hate about your favorite language?
There's been a cluster of Perl-hate on Stackoverflow lately, so I thought I'd bring my "Five things you hate about your favorite language" question to StackOverflow. Take your favo …
75
votes
102answers
33k views
What is the worst interviewee answer? [closed]
Following this question, what is the worst interview answer you've gotten from an interviewee in a technical interview?
6
votes
9answers
173 views
Programming ‘projects’ for interviews?
Doing the interview round at present, and one place had a 'small test' for candidates. We were asked to write a requirements doc, specs, design doc, test plan, as well as code and …
3
votes
5answers
154 views
From an interview: what’s the benefit of the stack in C?
I was asked about heap and stack memory structure in an interview. The guy asked me what's the benefit of having the stack? I wasn't sure what he was getting at. What others ways a …
157
votes
81answers
15k views
Dealbreakers for new programming jobs?
What can come up in an interview or job posting that should set off the alarm bells for a coder?
I'm still only a few years in the industry but I already know to look out for exce …
