Ingegnere Interview Questions

Ingegnere Interview Questions

Gli ingegneri sono responsabili della progettazione e della realizzazione di prodotti. Durante un colloquio di lavoro, aspettati di ricevere domande sulle tue competenze tecniche e di essere valutato per la tua capacità di lavorare in team alla creazione e realizzazione di oggetti. Le domande specifiche che ti verranno poste dipenderanno dal tipo di ruolo tecnico per il quale ti stai candidando, ad esempio una specifica disciplina ingegneristica come software engineer, ingegnere elettrico o ingegnere meccanico.

Domande tipiche dei colloqui per Ingegnere e come rispondere

Question 1

Domanda 1: Qual è il progetto di ingegneria più impegnativo al quale hai partecipato e come sei riuscito a garantirne il successo?

How to answer
Come rispondere: Per rispondere a questa domanda dovrai fare un esempio specifico. Idealmente, sei nella condizione di scegliere un progetto che rispecchia il tipo di lavoro che faresti nel ruolo per cui stai sostenendo il colloquio. Anche se non è il tuo progetto più impegnativo, ricordati di descrivere con chiarezza ed entusiasmo gli ostacoli che hai incontrato e il risultato positivo raggiunto.
Question 2

Domanda 2: Nel tuo ruolo attuale, quali misure adotti per evitare di commettere errori?

How to answer
Come rispondere: Indipendentemente dal processo adottato, più o meno formale, elenca tutte le misure specifiche da te impiegate, quali gli strumenti digitali o la consulenza dei colleghi. Fai in modo che la risposta dimostri il tuo impegno per il controllo della qualità, l'efficienza e la sicurezza.
Question 3

Domanda 3: Descrivi una volta in cui hai dovuto gestire un cliente o un interlocutore difficile.

How to answer
Come rispondere: Anche in questo caso dovrai raccontare un esempio specifico che metta in risalto doti quali pazienza e buon senso. Il datore di lavoro vuole assicurarsi che tu sia in grado di sostenere con sicurezza e calma le tue decisioni. Descrivi un esempio con un risultato positivo.

375,174 ingegnere interview questions shared by candidates

Question was "Given a pattern and a string input - find if the string follows the same pattern and return 0 or 1. Examples: 1) Pattern : "abba", input: "redblueredblue" should return 1. 2) Pattern: "aaaa", input: "asdasdasdasd" should return 1. 3) Pattern: "aabb", input: "xyzabcxzyabc" should return 0.
avatar

Software Engineer

Interviewed at Dropbox

3.8
Oct 18, 2014

Question was "Given a pattern and a string input - find if the string follows the same pattern and return 0 or 1. Examples: 1) Pattern : "abba", input: "redblueredblue" should return 1. 2) Pattern: "aaaa", input: "asdasdasdasd" should return 1. 3) Pattern: "aabb", input: "xyzabcxzyabc" should return 0.

Given an input string S write a function which returns true if it satisfies S = nT. Basically you have to find if a given string can be represented from a substring by iterating it “n” times. n >= 2 An example would suffice – Function should return true if 1) S = “abab” 2) S = “abcdabcd” 3) S = “abcabcabc” 4) S = “zzxzzxzzx” Function should return false if 1) S = “abac” 2) S = “abcdabbd” 3) S = “abcabcefg” 4) S = “zzxzzyzzx” It would be easy to understand if you can give an algo instead of saying use kmp or suffix tree or… I came up with O(n*n) solution. Wondered how to do in O(n)
avatar

Software Engineer

Interviewed at Google

4.4
Mar 19, 2014

Given an input string S write a function which returns true if it satisfies S = nT. Basically you have to find if a given string can be represented from a substring by iterating it “n” times. n >= 2 An example would suffice – Function should return true if 1) S = “abab” 2) S = “abcdabcd” 3) S = “abcabcabc” 4) S = “zzxzzxzzx” Function should return false if 1) S = “abac” 2) S = “abcdabbd” 3) S = “abcabcefg” 4) S = “zzxzzyzzx” It would be easy to understand if you can give an algo instead of saying use kmp or suffix tree or… I came up with O(n*n) solution. Wondered how to do in O(n)

In front of you are three light switches. Only one does anything, and it turns on the light downstairs. From here you can't see the light, and it makes no sound. You must determine which switch operates the light, BUT you can only go check it once. How do you figure out which switch is for the light?
avatar

Software Engineer

Interviewed at RTX

3.8
Mar 12, 2010

In front of you are three light switches. Only one does anything, and it turns on the light downstairs. From here you can't see the light, and it makes no sound. You must determine which switch operates the light, BUT you can only go check it once. How do you figure out which switch is for the light?

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.
avatar

Software Engineer

Interviewed at Google

4.4
Dec 4, 2009

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.

Viewing 11 - 20 interview questions

Glassdoor has 375,174 interview questions and reports from Ingegnere interviews. Prepare for your interview. Get hired. Love your job.