↳
It was on 03-14.Within 2 days they scheduled for onsite interview.By the way what all design pattern questions they asked you in first round?I was asked only Observer Pattern and Singleton Pattern Less
↳
Ya the same thing.....I already listed right...I had a difficulty in answering Observer pattern so listed here so that others can prepare well :) On site they will ask to write small code I guess but not so complicated. I heard that fidelity interview is not that tough as tech companies. So prepare well, answer confidently. All the best for the interview. Less
↳
Did you guys gave the on-site interview? How was the experience?
↳
What level of experience they are looking for?
↳
It was for New Grad
↳
What visa status they were looking for ?
↳
NO. No one is OK with working nights and weekends. The only kind of company that asks that type of question is a company that is mismanaged and expects that you give up nights and weekends because of executive mismanagement. No thanks. Less
↳
Yes, I m ok to work nights and weekends for a project until it is back on track or complete. Less
↳
Im okay with it,I'm the give anything it takes to get the job done kind of person Less
↳
foo - Using a recursive function foo2 - Using an iterative process def foo(s): if len(s) = 2: if s[i] == s[i+1] == " ": s = s[:i] + s[i+1:] else: i += 1 return s Less
↳
The iterative process: def foo2(s): if len(s) = 2: if s[i] == s[i+1] == " ": s = s[:i] + s[i+1:] else: i += 1 return s Less
↳
Recursive solution: def foo(s): if len(s) < 2: return s if s[0] == s[1] == " ": return foo(s[1:]) return s[0] + foo(s[1:]) Less
↳
Hi, I have an interview with Siemens next week ,could you please guide me a bit as how should I prepare.it is for the role "Big Data Software Engineer".I just wanted to know what type of Java question I should expect in the online exam. Regards, Tan Sah Less
↳
For the HireVue just basic Java stuff like Design Patterns, Threads, Multithreading and so Less
↳
Hi, I have cleared HireVue and have panel interview scheduled with Siemens. Can you please tell me what to expect?? Its for Big Data Engineer position. Less
↳
Well, I concentrated a lot on JAVA coding questions but did not brush up my big data knowledge. People interviewing for this position, I would like to say please keep yourself updated on the new Big Data technologies as it is a Big Data Engineer role. All the best :) Less
↳
In how much time they let you know thier decision?
↳
I interviewed on Friday and got a reply on Monday, so in 2-3 days.
↳
What coding question they asked out of 5 question??
↳
write a query to find the second maximum.