↳
How was the phone interview? you didn't have on-site interview?
↳
Phone interview was good. They asked the questions which are there on the blackboard and there a set of mathwork interview questions on scribd.com. You can also refer that Less
↳
can we choose any two language out of 5.?
↳
Hi, How long did it take for them to get back with results of the first round?
↳
Hi, How long did it take for them to get back with results of the first round?
↳
Oh... it still says interview process for me... i gave the video round last week, I guess I'll have to wait some more time... thanks for the reply Less
↳
I have the same question. It would be really helpful if you can provide us with the info. Less
↳
It took 4 business days for me.
↳
I got rejected after the video round. No reason. totally let down!
↳
Hi can you please post the coding challenge questions here..
↳
I am sorry. Only thing I could say is that the challenge was standard and had questions from Cracking the Coding book. Many questions were language based and some were proper algorithm questions. Less
↳
Hey, what did you mention about your salary expectation that put them off. I have one coming up and was wondering. Less
↳
Shouldn't it be as mention below ? if(skip){ return facto(n-1,false); } else{ return n*facto(n-1,true); } Less
↳
#include #include class Solution { public: static long long SkipFact(long long n){ if (n > n; long long output = Solution::SkipFact(n); cout << "Factorial is :" << output << endl; return 0; } Less
↳
class Solution { public: static long long SkipFact(long long n){ if (n > n; long long output = Solution::SkipFact(n); cout << "Factorial is :" << output << endl; return 0; } Less
↳
What questions were asked in math?
↳
Did you have an on-site interview? Please elaborate a bit on phone interview.
↳
Can you please tell me the topics being asked in the technical phone interview
↳
A function handle is a data type that stores an association to a function. For example, you can use a function handle to construct anonymous functions or specify call back functions. Also, you can use a function handle to pass a function to another function, or call local functions from outside the main function. Less
↳
A function handle is a MATLAB value that provides a means of calling a function indirectly. http://www.mathworks.com/help/techdoc/matlab_prog/f2-38133.html Less
↳
I don't know.
↳
whos -file x.mat
↳
x='filename.mat'; whos(x)
↳
m = maftile('filename'); m.
↳
use binary search for the first one; the other one just did a simple character by character equality check. Less
↳
public boolean compareString(String arr[], String s){ boolean doesMatch = false; for(int i=0; i Less
↳
For the string comparison you will also need to strip the trailing spaces from each string Less