↳
Did they called you or they had emailed you regarding offer ?
↳
Interview went well.There were few coding questions, behavioral questions and technical questions related to my resume content.How about your status? Less
↳
Even I had same kind of interview and it's been more then a week. Still I'm waiting for the results. Did you hear from them Less
↳
I haven't had it yet but once I do I will update you with the answer soon after. :) Less
↳
They asked me STAR questions, that I wasn't prepared for. I studied Q&A on this entire site and he didn't ask me not one of those questions. I was shocked, thrown off and didn't get the offer. I'll be better prepared next time, with recorder on and everything, lol Less
↳
I didn't get any of the questions that people got either. The types of questions I got are in the above paragraph. Strengths, weaknesses, traits that o could bring to the company and behavior that I would bring to the position I'm applying for. I'm sorry you didn't get the offer. I was a nervous wreck throughout the entire ordeal thinking I didn't get it. Try again for regular at home. I saw some postings online dated for Jan 10 for Apple care . Best of luck to you. Less
↳
def fib(n): if n == 0: return 0 elif n == 1: return 1 else: return fib(n-1)+fib(n-2) Less
↳
def fib(n): if n==0: return 0 elif n==1: return 1 else: x,y=0,1 while n>1: tot = x+y x=y y=tot n-=1 return y print(fib(999999)) Less
↳
java solution public static int fib(int n) { if(n == 0) return 0; int numN1 = 1, numN2 = 0, sum; //numN1 represents fib(n-1), numN2 represents fib(n-2) //at the end, we are adding values starting from 0, 1 //fib(2) = fib(1) + fib(0) = 1 + 0 = 1 //fib(3) = fib(2) + fib(1) = 1 + 1 = 2; //fib(4) = fib(3) + fib(2) = 2 + 1 = 3; //fib(5) = fib(4) + fib(3) = 3 + 2 = 5; for(int index = 2; index <= n; index++) { sum = numN1 + numN2; numN2 = numN1; numN1 = sum; } return numN1; } Less
↳
I'm willing to stay as long as I earn some experience from this work and contribute to your company. I have the planned Master studies in Utrecht, Netherlands, though, so I plan to stop by internship a bit earlier so I can continue my further "upgrade". Less
↳
I am willing to stay as long. I want to long term planning to join company and settle in Belgrade. Less
↳
Im willing to stay for later period
↳
Hi, did you get the offer?
↳
Even I was interviewed on the same day. I didn't receive any message from them yet. Did you get any call from them? Less
↳
Hi, I was interviewd on june 17th! I dint get any update and my status is showing Interviewing aince that day..are there any chances that i am still under consideration!? Thanks! Less
↳
/** * @param {number[]} nums * @return {void} Do not return anything, modify nums in-place instead. */ var moveZeroes = function(nums) { for(i=nums.length-1; i>=0; i--) { if(nums[i] === 0) { nums.splice(i,1); nums.push(0); } } }; Less
↳
java solution public static void pushNonZeroToEnd(int[] array) { if (array == null || array.length == 0) return; int zeroCount = array.length-1; for(int indexArray = array.length - 1; indexArray >= 0; indexArray--) { if(array[indexArray] != 0) { array[zeroCount--] = array[indexArray]; } } while(zeroCount >= 0){ array[zeroCount--] = 0; } } Less
↳
java solution public static int fib(int n) { if(n == 0) return 0; int numN1 = 1, numN2 = 0, sum; //numN1 represents fib(n-1), numN2 represents fib(n-2) //at the end, we are adding values starting from 0, 1 //fib(2) = fib(1) + fib(0) = 1 + 0 = 1 //fib(3) = fib(2) + fib(1) = 1 + 1 = 2; //fib(4) = fib(3) + fib(2) = 2 + 1 = 3; //fib(5) = fib(4) + fib(3) = 3 + 2 = 5; for(int index = 2; index <= n; index++) { sum = numN1 + numN2; numN2 = numN1; numN1 = sum; } return numN1; } Less
↳
What did the list of windows technical tasks consist of? Also, did you have to code in Python, or were two snippets given and you had to explain what's happening? Less
↳
What was the technical questions they asked? Did they ask to code in particular language? Less
↳
Simple questions in python. Left shift operators. Loops. For the timed test, they asked me to perform administrative tasks in windows environment Less
↳
STAR method.
↳
Thank you for your candid feedback on the interview process and working with Trojan Professional Services, Inc. We work with hiring agencies to fill most of our positions and they will have their own onboarding processes. Our hiring process includes a phone interview, an assessment and an in person/video interview to select candidates. Once hired as a temp-to hire-, a clear training timeline and assessment schedule will be provided to the temp- to -hire. Once the temp-to-hire passes the assessment for an item they're expected to be able to complete the items on their own with use of the resources in the intranet and training materials/manuals. Feedback is provided immediately from trainer as well as weekly follow ups with temps, trainer and supervisor on the progress of the training timeline. We strongly encourage feedback from the temp-to-hires through the training progression. With communication being once of our seven company tenants; we continuously strive to improve and make changes to processes and procedures to enhance temp-to-hire, regular full time employee experience. Less