Ho presentato la mia candidatura online. Ho sostenuto un colloquio presso Intel Corporation (Portland, OR) nel mese di nov 2017
Colloquio
First Phone interview was done and then onsite interview was called. It was a good experience to have. You can learn about industrial approach and expectation in terms of knowledge depth and job responsibility.
Domande di colloquio [1]
Domanda 1
What I have done during my internship to improve the power performance of the Architecture platform?
Ho presentato la mia candidatura tramite segnalazione di un dipendente. La procedura ha richiesto 2 settimane. Ho sostenuto un colloquio presso Intel Corporation (Haifa) nel mese di apr 2024
Colloquio
first the interviewers explained about the job, about themself and ask me to talk about my background. second, they ask me 3 technoical question- one about cmos technology and logic gates, second was a math logical question and the third was an analog question.
Domande di colloquio [1]
Domanda 1
to create a NAND gate with a minimum of 2 transistors
Ho presentato la mia candidatura online. Ho sostenuto un colloquio presso Intel Corporation
Colloquio
this interview is the first of two technical interviews for the internship.
started interviewer explained what the team does on the job then asked the usual "tell me about yourself" question.
then moved on to solve 2 technical questions, where the first i had to explain my solution orally and the second question i had to explain while writing code.
Domande di colloquio [2]
Domanda 1
Given an array of integers (OR a linked list), and an integer K - write an algorithm to find two elements of the array which sum up to K.
* Time complexity of Theta(N) where N is the amount of elements in the array/list.
* The algorithm can access the array / list only once.
* The size of the array / list is unknown beforehand.
* The elements should sum up to K exactly.
from std library c++11.
1) implement the function - void* aligned_alloc(size_t alignment , size_t size)
2) implement the function - aligned_free(void* ptr)
* you can use malloc() and free() from std library in your solution