Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
12answers
7k views

What are your essential phone-screen questions?

I loved the article from Steve Yegge where he explains to get the most out of phone interviews Coding. The candidate has to write some simple code, with correct syntax, in C, C++, or Java. OO ...
9
votes
4answers
277 views

Amazon's keyword matcher

You are given the amazon.com database which consists of names of millions of products. When a user enters a search query for particular object with the keyword say "foo" , output all the products ...
9
votes
9answers
238 views

Weirdly phrased interview question (reducing iterations)?

So, I was asked this question in a phone interview two days ago. Since then I've been thinking about how I could answer but haven't reached any good points yet so I am thinking that maybe it was the ...
9
votes
4answers
934 views

Programming interview : quick ways to ensure that program is correct

I faced a telephonic interview recently and I was asked to write a program. The program is non-trivial to understand, but I am asked to write the program. I wrote the program and interviewer showed me ...
8
votes
8answers
379 views

Matching the occurrence and pattern of characters of String2 in String1

I was asked this question in a phone interview for summer internship, and tried to come up with a n*m complexity solution (although it wasn't accurate too) in Java. I have a function that takes 2 ...
8
votes
6answers
649 views

Made an interview mistake. Should I try to correct after the fact? [closed]

Ever been in a situation where you were in an interview, and realized immediately afterwards (after the nervousness wore off) that you did something wrong? I had a phone interview today. I was asked ...
6
votes
7answers
381 views

How will you keep a specific country on top in a drop down list?

In a list of countries that need to be displayed in an alphabetical order, you need to place United States at the top of the list. How will do you this? I answered by saying that I will have a table ...
6
votes
6answers
1k views

Phone interviews for a software engineering internship, being performed by non-developers [closed]

My department is hiring a software engineering intern. Previously all of our employees have been cross-bred electronics engineers and "novice" programmers. Now we're actually building a software team ...
4
votes
4answers
181 views

Count of different element in a stream

You have a incoming stream of numbers, which grows fast. How will you find the count of each element present till any given time? Exact count may be a bit hard to implement in terms of memory and ...
3
votes
3answers
114 views

Best practices for code on Google Docs

Many telephonic interviews ask code to be written on a shared Google Doc. Code looks horrible on Google Docs. I wanted to know what people are using to "style up" their code. To start off, code does ...
3
votes
13answers
764 views

Interview trick question

I had an interview a few weeks back and just heard the outcome of my application was not successful, i believe is because of a trick question they made me and i choke when answering it... He gave me ...
2
votes
5answers
109 views

which approach to follow in this case

In interview , I was asked if it is better to use linear search if we have a large unsorted array or if it's better to go for quick sort and then binary search. I answered linear search but I guess I ...
2
votes
4answers
344 views

Java:Delete all the elements from Linked List

In Java, How to remove all the elements in linked list without using already available clear method Say i can do this in C void DeleteAllElement( ListElement **head ) { ListElement *deleteMe = ...
1
vote
2answers
104 views

How will you process date values stored in varchar fields?

Your user wants a report sorted by date. This report is being created using C# and ODP.NET You do a sort on the Date column and the output is not exactly what the user expected. Upon some closer ...
0
votes
3answers
77 views

How to validate email address without RegEx?

I recently came across an interview question that asks to validate email addresses such that: Accept any email ending with .edu (except case 2) Reject alumini email address of the form ...
0
votes
0answers
24 views

Would companies tell you in case where you failed their interviews? [closed]

For companies like Amazon and Microsoft etc., do they tell you the result regardless of whether there is another interview? Or you're definitely not going through if there's no response one week after ...
0
votes
1answer
76 views

How will you fetch static data in your windows form application?

What's your approach to fetch static data in your windows form application? My approach is to load an arrayList with data when the user logs in. Then reuse this arraylist which will save round trips ...
0
votes
1answer
508 views

Questions to evaluate the technical competency of a business analyst type position

I am looking for a few solid phone screen friendly questions with proven success to evaluate the technical competency of a candidate for a BA type position. I require this candidate, who will ...
-2
votes
2answers
651 views

Areas you would like to improve [closed]

I m being asked this interview questions. 3 areas you would like to improve? what would be a good answer? The position is for a software developer position. Skills required are: Data structures, ...