Intern iii Interview Questions
5K
Intern Iii interview questions shared by candidates
Tell me about yourself
14 Answers↳
Name Muhammad tahir Age 43 Education BA experience 10 Years driver +SELSMEN Lmt+wholesale In Colgate-Palmolive pakistan Less
↳
I am a forward-thinking chemical engineering student with experience in manufacturing and industrial environments, from which I gained real-world exposure that helped lay my foundation in engineering. I am a detail-oriented team player, looking to apply my critical thinking, problem-solving and analytical skills in a position at Coca -Cola. Less
↳
Name Muhammad tahir Age 43 works in Colgate-Palmolive pakistan Education BA experience 10 years driver +SELSMEN LMT+WHOLE SELS MARKET Less

Why did you apply to work at Coca-Cola?
5 Answers↳
As a future engineer, I am always looking to challenge myself and advance my skill set. Working in a growth-oriented position at a Fortune 500 company like Coca-Cola will allow me to develop my professional as well as technical skills, which will be more than useful in my future endeavors. My specific interest in Coca-Cola lies in the fact that the positions are multidisciplinary. It is a position that allows you to draw and apply knowledge from various disciplines including engineering, business, and statistics to solve a problem or achieve a goal. Also, I believe that I have a lot to offer Coca-Cola. Having worked at a manufacturing company prior, I understand the urgency of the manufacturing industry and also have experience formulating SOP’s as well as in waste analysis/management. In school, I take a course called Engineering computation in which I learn MATLAB Programming language as well as Excel VBA and Macros. I would relish the opportunity to apply the skills I have gained in both school and at my previous work term Less
↳
I like marketing I accept challenges
↳
Hello sir

Some maths questions and Situation based questions with Client, as to check how would you be able to deal with some situations when handling a team.
4 Answers↳
Try to convince them , and tell the benefits and advantages, of working together. They need to provide a customer comes first policy, and to the develop of the company. Less
↳
Dealing with different kinds of people is a top priority and a very challenging factor to enhance my self confidence. Less
↳
you need to have a costumer service, you need to serve the costumer efficiently to their needs. Less

Why should we hire you?
4 Answers↳
I work hard If you feel better you hire me
↳
Because i am talented and punchual person and i can prove my self .
↳
Because I like Canada

Why do you want to work in manufacturing?
4 Answers↳
There is many chns to seccus in life
↳
Before I working manufacturer
↳
Manufacturing makes a significant contribution to home and global economies, as well as puts food on the table at a local level. With a substantial contribution to GDP, manufacturing helps raise the standard of living for workers and consumers, Less

How would your last employer describe you?
4 Answers↳
Nice
↳
Al most5years
↳
Sample Answer I didn't really get along with my last boss, but he got results and he respected the quality of my work, and that's what's important. ... I prefer to work with people who are more flexible, but the fact that I was not micromanaged and I was free to find my own approach to the tasks I was given was great. Less

Telephone interview: Find largest integer from an array of integers. The integers in the array are arranged in strictly increasing (no 2 integers are same) or strictly increasing then decreasing; so like a curve and you have to find the peak. Discuss time complexity. Write code.
4 Answers↳
The question is a variation of the commonly asked problem of finding the start/end index of a sorted array that has been rotated. Takes O(log n) time. Less
↳
You can solve this question using ternary search
↳
First, binary search will not work since just looking at a single point will not tell you if it's on the decreasing or increasing side of the curve. What you need is modified binary search. Looking at position i check position i+1 if it's increasing then search right otherwise search left; Code: int peak(vector V, int i, int iStart, int iEnd){ assert( i >= 0 && i = 0 && iStart = 0 && iEnd < V.size()); assert( iStart <= i && i <= iEnd ); if (i == iEnd) return i; int iCurr = V[i]; int iNext = V[i+1]; int iStartNew = iStart; int iEndNew = iEndl if( iCurr < iNext ) iStartNew = i; else iEndNew = i; int iNew = (iEndNew-iStartNew)/2; if( iNew == i ) iNew++; return peak(V, iNew, iStartNew, iEndNew); } Less

What is your favorite course in school and why?
4 Answers
phone screen question: what is the derivative of veloctiy?
4 Answers↳
Acceleration
↳
Guys...the (time) derivative of velocity is, without a doubt, acceleration.
↳
dx/dt; delta of distance over delta of time

Give me one example from your past employment history where unusual events created interpersonal conflict and/or impaired customer service (i.e. patient and/or physician), including how you solved these multiple problems, and what was the final outcome.
4 Answers↳
i believe that there's no such conflict things that will occur if you passions on what you are doing. As a proactive person you can instantly think of best solution. Less
↳
Once I was doing procedure ( Echo study of adult very obese patient ) but the resolution was too bad. We solved the problem by changing high frequency transducer to low frequency transducer. Less
↳
i believe that there's no such conflict things that will occur if you passions on what you are doing. As a proactive person you can instantly think of best solution. Less