Given deck of cards + joker, what is the probability you see the joker before all four aces?
Financial Engineer Interview Questions
1,105 financial engineer interview questions shared by candidates
Write a code to add commas to integer, e.g., 12345 will become 12,345 and 1123 would become 1,123.
An array contains alphabets, some of which may have duplicates. Find the number of duplicates.
How does Java Garbage Collection work? How would you implement garbage collection?
Reverse Integer, Two LinkedList intersects with each other, general question about heap, Buy and sell stock, Fabonacci, find the smallest common mutiples of two numbers.
Find repeating characters in string. Count occurrences of number in a stream of numbers. Print elements of a linked list in a particular order. Eg: 2-4-5-6-7-10-13 . output - "2,4-7,10,13". If the numbers are consecutive print the starting and ending number of the range, otherwise print the numbers as such in the form of string
Given a list of ones and zeros, how would you sort the list efficiently so the zeros are in the front and the ones are in the second half.
template<class T1; class T2; class T3> int Product (T1 a, T2 b, T3 c) { return a * b * c; } What is the error in the sample code above?
what is the return type of sizeof()
C#, if you set lock in a method, will you be able to do a recursive call again?
Viewing 71 - 80 interview questions