↳
what's your previous salary?
↳
Search for good opportunity and to improve my skills
↳
My answer did not satisfy the interviewer.
↳
I believe what would happen is that you would burn out the stator of the DC motor. It happens because there is no resistance from the field and the stator wiring has infinite current which causes it to burn up. Less
↳
In my opinion : 1. It depends on what is your measurement criteria of performance. Technical? Project delivery? Attitude? How long is the period of your measurement of the performance? 2. As expected, a freshie require guidance from senior Engineer. If it doesnt perform, means the leader/senior engineer doesnt guide well. 3. Some freshies got the job differs from their qualification and field of study. Therefore they require ample time to build up the knowledge and experience to adapt in the industry. 4. If your measurement stick is meant for 10 years experience engineer but you were applying for freshies, it doesnt add up definitely. Every engineer has their own KPI right? Less
↳
Student lacks the skills due to : - No trainning or orientation to the company’s working experience - Most of fresh graduates have more than they can give but due to lack of machinery experience they do not perform like any other senior engineers. - Responsibility given is not brushing their talents more but maintaining it at the same level as before. - Should consider having a senior and junior engineers working together to give them the idea what the industry demands. Less
↳
private int climbNStairs(int n) { if (n == 0) return 1; else if (n < 0) return 0; int tally = 0; tally += climbNStairs(n-1); tally += climbNStairs(n-2); return tally; } Less
↳
It's really not easy to derive the "Fibonacci Number" with the following equation: F(N) = F(N-1) + F(N-2) if you didn't know it ahead of time.... Less