Given a fleet of 50 trucks, each with a full fuel tank and a range of 100 miles, how far can you deliver a payload? You can transfer the payload from truck to truck, and you can transfer fuel from truck to truck. Extend your answer for n trucks.
Ingeniero Interview Questions
Ingeniero Interview Questions
Un ingeniero es responsable de diseñar y crear productos. En el contexto de una entrevista, es posible que te pregunten acerca de tus habilidades técnicas y que te evalúen por tu capacidad de trabajar en equipo con el fin de conseguir crear o construir cosas. El tipo de preguntas que te harán dependerá del tipo de puesto de ingeniero que estés buscando, o lo que es lo mismo, la disciplina de ingeniería concreta como, por ejemplo, de software, eléctrica o mecánica.
Preguntas de entrevista más frecuentes para ingeniero/a y cómo responderlas
Pregunta n.º 1: ¿Cuál es el proyecto de ingeniería más difícil que has abordado, y cómo te aseguraste de poder terminarlo con éxito?
Pregunta n.º 2: En tu puesto actual, ¿qué medidas tomas para no cometer errores?
Pregunta n.º 3: Describe una situación en la que tuvieses que lidiar con un cliente o una parte interesada difícil.
1,136,609 ingeniero interview questions shared by candidates
implement the dynamic polymorphism
The final round of interview was challenging in terms of how you pick scenarios from your career.
Given an array of ints = [6, 4, 0, 5, 0, 0, 0, 1, 0] move all non zero numbers to the left and zeros to the right. How can you now improve your answer to O(n)?
Write an algorithm to determine whether a given number is of the form (2^n)+1, where n is an integer.
What is polymorphism?
An array of 99 elements contains integers from 1 to 100 with one missing element. Find the missing element.
Given the list of points of the skyline of a city in order (from East to West) Find the maximal rectangle contained in this skyline. I was asked to write the code. I managed to find the algorithm but was not sufficient.
Given an array of positive integers and a target integer, find if there is a consecutive subarray that sums to the target. E.g, given {5,6,4,12}, findsum(10)=true, findsum(11)=false.
Viewing 41 - 50 interview questions