Tagged Questions

7
votes
9answers
309 views

In 3 minutes, What is Reflection? [closed]

Many .Net interview question lists (including the good ones) contain the question: "What is Reflection?". I was recently asked to answer this in the context of a 5 question, technical test designed to …
1
vote
7answers
200 views

Why Java is not fully object oriented? [closed]

Possible Duplicates: Is java 100% object oriented ? Is Java 100% object oriented? Hi, Can somebody tell me why java is not fully object oriented programming? And what is meant by fully …
0
votes
8answers
218 views

Concatenate null-terminated strings recursively

I'm inventing interview questions that require analysis of C++ code that does something simple with pointers and recursion. I tried to write strcat() in recursive manner: size_t mystrlen( const char* …
1
vote
10answers
237 views
2
votes
9answers
356 views

what is the difference between “int *i” and “int* i”? [closed]

Possible Duplicates: C Pointer Syntax: Style poll C++: Asterisks and Pointers What is the difference between int *i and int* i? In one of my software interview, interviewer asked me this …
3
votes
12answers
485 views

What question should be asked to test the interview candidate’s knowledge of references in C++ ?

Hi, If a candidate says that his knowledge in C++ is 7/10 and you want to test his knowledge of references in C++, what question will you ask? I thought of the following: Write a function …
196
votes
80answers
12k 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. If you can't design …
0
votes
5answers
168 views

Interview questions to assess Linux C programmers

Hi Guys, I'm not quite a c programmer and I'm not joking that I'll interview a guy with 3 years experience in c under linux . in his cv, he said he is quite experienced with c programming under linux …
4
votes
7answers
277 views

Swapping two variable value without using 3rd variable

One of the very tricky question asked in an interview... we need to swap the values of two variables like a=10 and b=15 Generaly to swap two variables values, we need 3rd variable like.. temp=a a=b …
3
votes
6answers
312 views

Tech Interview Question-Is my approach correct?

Recently I was interviewed by a Software Company. I didnt make it through the first round itself. Maybe I was too slow in forming ideas or solving problems and wasnt good enough for the company that …
11
votes
18answers
474 views

Using a “take-home” coding component in interview process

In recent interviews I have been asking candidates to code through some questions on the whiteboard. I don't feel I'm getting a clear enough picture of the candidates technical ability with this …
4
votes
9answers
304 views
2
votes
4answers
101 views

Best Possible algorithm to check if two linked lists are merging at any point? If so, where?

Hello, This is an interview question for which I don't have an answer. Given Two lists, You cannot change list and you dont know the length. Give best possible algorithm to: Check if two lists are …
136
votes
121answers
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 favorite language and …
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?

1 2 3 4 5 26 next
15 30 50 per page