What is a useful skill for sales
Financial Data Interview Questions
57,191 financial data interview questions shared by candidates
write a function to compare 2 strings of the same length, find the number of different chars. e.g. myCompare('bond','debt') = 2 myCompare('xxxx','yyyy') = 2 the 2 input parameters are const
read the following code and tell me the output, and is there anything wrong about it? #include <iostream> class A { public: A() { foo(); } virtual void foo(int a = 10) { std::cout << "A = " << a << std::endl; } }; class B : public A { public: B() { foo(); } virtual void foo(int b = 20) { std::cout << "B = " << b << std::endl; } }; int main() { A* aPtr = new B(); aPtr->foo(); delete aPtr; return 0; }
Why Bloomberg?
Tell me about something you're following in the markets.
How would you prioritize addressing questions asked by a CEO who wants to understand how to use a function on the terminal, a portfolio manager who can't process a trade, and a new employee who needs a tutorial on how to access certain charts and data.
Given an input of stream of words find the most recurring word. what is the data structure used for this purpose. what will be the time complexity of that.
Improve on the previous code, then give the running time on the two codes and explain which would be better to use if you were a manager and presented with these two codes and why
Insert sort & complexity? binary tree & Depth First Search? reverse number?Classic questions.
Algorithm test, how to represent in flow chart a certain game or a certain aglorithm
Viewing 1941 - 1950 interview questions