Tagged Questions

3
votes
11answers
340 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 …
2
votes
4answers
81 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 …
3
votes
6answers
199 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 …
1
vote
1answer
39 views

DB Operations in asp.net with c#

I have a question from an interviewer: If two users open the same page, one person adding 105 record and another person deleting the same record, what happens in this scenario? How do I answer this? …
2
votes
4answers
240 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 …
0
votes
4answers
81 views

Best Forum for Oracle PL/SQL, SQL? [closed]

Which is the best Forum for Oracle PL/SQL and SQL?
4
votes
9answers
251 views
0
votes
5answers
172 views

What to look for in a candidate with over 8 years of experience in C, C++, Linux Application Development?

I need to interview a candidate with over 8 years of experience in Linux using C/C++. What would be the best way to judge such a candidate? Do I need to test his understanding of algorithms? Do I …
11
votes
18answers
458 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 …
2
votes
4answers
199 views

How to check the personality of the interviewee? [closed]

At a typical interview I ask several technical questions which check the interviewee's professional qualities quite well. But even more important for me is to check his personal (behavioral) …
4
votes
3answers
198 views

What is a good ‘FizzBuzz’ question for a SQL programmer?

We are looking to hire a SQL programmer and need a good screening question similar to the FizzBuzz question but for SQL. While it is certainly possible to write a FizzBuzz solution using SQL, I …
1
vote
4answers
290 views

What does this code-snippet do?

Question: Given the following code snippet: bool foo(int n) { for(int i=3;i<sqrt(n)+0.5;i+=2) { if((n%i)==0){ return false; } } return true; } Can …
1
vote
11answers
251 views

Execute code in if-else statement [closed]

Possible Duplicate: What’s the “condition” in C interview question? How to execute code in 'if' and 'else' blocks in a single run in C? Edit: the question was asked in an …
9
votes
6answers
339 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>() { 1, 2, 3, 4, 5, …
1
vote
5answers
212 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; };

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