Embedded Software Engineer Interview Questions

Embedded Software Engineer Interview Questions

Embedded Software Engineers entwickeln und warten Embedded Systems. Hierfür sind ggf. fortgeschrittene Software- und Problemlösungskompetenzen erforderlich. In einem Vorstellungsgespräch für Embedded Software Engineers wird der Gesprächspartner wahrscheinlich Fragen stellen, mit denen Ihre Programmierkenntnisse und -erfahrungen geprüft werden sollen. Sie werden auch über Ihre Teamfähigkeit sprechen müssen, da die Stelle möglicherweise in einer Gruppe ausgeübt wird.

Typische Bewerbungsfragen als Embedded Software Engineer (m/w/d) und wie Sie diese beantworten

Question 1

Frage 1: Definieren Sie ein Embedded System.

How to answer
So beantworten Sie die Frage: Stellen Sie Ihre Kompetenz unter Beweis, indem Sie eine knappe, aber gründliche Antwort geben. Erläutern Sie, dass es sich bei einem Embedded System um einen Computer handelt, der in einem größeren System untergebracht ist und dessen Zweck die Erfüllung einer speziellen Aufgabe ist. Nennen Sie einige Beispiele, z. B. ein Auto, ein Küchengerät oder einen MP3-Player.
Question 2

Frage 2: Welche Programmiersprachen beherrschen Sie?

How to answer
So beantworten Sie die Frage: Embedded Software Engineers sind für die Entwicklung komplexer funktionaler Systeme verantwortlich. Daher können Sie auf diese Frage hin ruhig Ihre technische Kompetenz unterstreichen. Ihr Gesprächspartner wird als Antwort wahrscheinlich grundlegende Programmiersprachen wie C und C++ erwarten. Sie könnten auch erwähnen, welche Sprachen Sie bevorzugen oder in welchen Sie gerne mehr Erfahrung sammeln würden, und damit Ihre Leidenschaft und Ihre Bereitschaft zum ständigen Lernen demonstrieren.
Question 3

Frage 3: Haben Sie bereits mit Technikern und Designern zusammengearbeitet?

How to answer
So beantworten Sie die Frage: Unter Umständen werden Sie mit anderen auf ein gemeinsames Ziel hinarbeiten. Daher ist Teamarbeit unerlässlich. Erzählen Sie von einem Fall, in dem Sie ein Produktproblem in Zusammenarbeit mit anderen erfolgreich behoben haben. Legen Sie den Schwerpunkt dabei auf Ihre Fähigkeit, Stress zu bewältigen, komplexe Sachverhalte klar zu vermitteln und anderen zuzuhören.

4,389 embedded software engineer interview questions shared by candidates

int x=20,y=35; x=y++ + x++; y= ++y + ++x; printf("%d%d\n",x,y); char *ptr = " Plexus Corp"; char *temp; ptr+=2; printf("%s\n",ptr); *temp = *ptr++; printf("%s\n",ptr); What is the final value of port1? unsigned short port1 = 0x1212FF22; port1 |= 0x11; port1 &= ~0x2200; void Q3() { int x=5, y=10; swap (x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } explain const int a; int const a; const int *a; int * const a; int const * a const; Please comment on the following interrupt service routine code: __interrupt double compute_area(double radius) { double area = PI * radius * radius; printf("\nArea = %f", area); return area; } #define SQR( a ) a*a printf("Answer is %d\n",SQR(6+1)); Review his function and identify any issues or problems with this function   char* GetNewStringAsUppercase(char* string1) { int i=0; char string2[20]; while (i<20 && *(string1+i) != '\0') { string2[i] = toupper (*(string1+i)); ++i; } string2[i] = '\0'; return string2; }
avatar

Senior Embedded Software Engineer

Interviewed at Plexus

3.8
Nov 1, 2012

int x=20,y=35; x=y++ + x++; y= ++y + ++x; printf("%d%d\n",x,y); char *ptr = " Plexus Corp"; char *temp; ptr+=2; printf("%s\n",ptr); *temp = *ptr++; printf("%s\n",ptr); What is the final value of port1? unsigned short port1 = 0x1212FF22; port1 |= 0x11; port1 &= ~0x2200; void Q3() { int x=5, y=10; swap (x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } explain const int a; int const a; const int *a; int * const a; int const * a const; Please comment on the following interrupt service routine code: __interrupt double compute_area(double radius) { double area = PI * radius * radius; printf("\nArea = %f", area); return area; } #define SQR( a ) a*a printf("Answer is %d\n",SQR(6+1)); Review his function and identify any issues or problems with this function   char* GetNewStringAsUppercase(char* string1) { int i=0; char string2[20]; while (i<20 && *(string1+i) != '\0') { string2[i] = toupper (*(string1+i)); ++i; } string2[i] = '\0'; return string2; }

The interview revolved around the basic aspects of Embedded Systems. For example, questions like, 1.)how many drivers have you used, what is the use of X (SPI) driver over Y(I2C). 2.)how efficient you are in C, what is the data-type 'enum'? 3.)how many sensors have you used, how does the X(Ultra-sonic) sensor works? 4.)what is your contribution in project?
avatar

Embedded Software Engineer

Interviewed at Addverb Technologies

3.6
Oct 8, 2019

The interview revolved around the basic aspects of Embedded Systems. For example, questions like, 1.)how many drivers have you used, what is the use of X (SPI) driver over Y(I2C). 2.)how efficient you are in C, what is the data-type 'enum'? 3.)how many sensors have you used, how does the X(Ultra-sonic) sensor works? 4.)what is your contribution in project?

Viewing 1911 - 1920 interview questions

Glassdoor has 4,389 interview questions and reports from Embedded software engineer interviews. Prepare for your interview. Get hired. Love your job.