Search test library by skills or roles
⌘ K

About the test:

Det inbäddade C-testet använder scenariebaserade MCQ-frågor för att utvärdera en kandidats förmåga att utveckla C/ inbäddade C-drivrutiner/ bibliotek och kodande frågor för att utvärdera praktiska C-programmeringsfärdigheter. De kodspårande MCQ-frågorna utvärderar inbäddade C-grunder (datatyper, variabler, pekare), I/O-hårdvaruadressering, fastpunktsaritmetiska operationer, åtkomst till adressutrymmen, förbehandlardirektiv och effektiv tillämpning av objektorienterade programmeringsprinciper för firmware-utveckling.

Covered skills:

  • C Basics (variabler; datatyper; deklarationer; funktioner)
  • Pekare (med matriser; strukturer; fackföreningar)
  • I/O i C och korrelationer i inbäddade system
  • Interna för monterare och kompilator
  • Kompilatoroptimering
  • Rubrikskydd
  • Inbäddade C -grunder (register; direktiv; drivrutiner)
  • Bitoperationer (förpackningsdata; packa upp data; bitmanipulationer)
  • Objektorienterade principer (polymorfism; arv; inkapsling)
  • Felsökning och felhantering
  • Tvärkompilationskedjor
  • Startsekvens

Try practice test
9 reasons why
9 reasons why

Adaface Inbäddat C online -test is the most accurate way to shortlist Inbäddad programvaruingenjörs



Reason #1

Tests for on-the-job skills

The Inbäddat C online -test helps recruiters and hiring managers identify qualified candidates from a pool of resumes, and helps in taking objective hiring decisions. It reduces the administrative overhead of interviewing too many candidates and saves time by filtering out unqualified candidates at the first step of the hiring process.

The test screens for the following skills that hiring managers look for in candidates:

  • Möjlighet att skriva välstrukturerad och effektiv C-kod
  • Bekanta med inbäddade system och användning av register, direktiv och förare
  • Kunskaper i att arbeta med pekare i olika scenarier inklusive matriser, strukturer och fackföreningar
  • Förmåga att utföra bitoperationer som förpackningar och packa upp data, såväl som bitmanipulationer
  • Förståelse av I/O i C och dess korrelation med inbäddade system
  • Kunskap om objektorienterade principer som polymorfism, arv och kapsling
  • Medvetenhet om internaler för monterare och kompilatorer
  • Kunskaper i felsökning och felhantering
  • Möjlighet att optimera koden med hjälp av en kompilator
  • Erfarenhet av tvärkompilerande verktygskedjor
  • Förståelse för rubrikskydd
  • Kunskap om startsekvensen i inbäddade system
Reason #2

No trick questions

no trick questions

Traditional assessment tools use trick questions and puzzles for the screening, which creates a lot of frustration among candidates about having to go through irrelevant screening assessments.

View sample questions

The main reason we started Adaface is that traditional pre-employment assessment platforms are not a fair way for companies to evaluate candidates. At Adaface, our mission is to help companies find great candidates by assessing on-the-job skills required for a role.

Why we started Adaface
Try practice test
Reason #3

Non-googleable questions

We have a very high focus on the quality of questions that test for on-the-job skills. Every question is non-googleable and we have a very high bar for the level of subject matter experts we onboard to create these questions. We have crawlers to check if any of the questions are leaked online. If/ when a question gets leaked, we get an alert. We change the question for you & let you know.

How we design questions

Dessa är bara ett litet urval från vårt bibliotek med 10 000+ frågor. De faktiska frågorna om detta Inbäddat C -test kommer att vara icke-googleable.

🧐 Question

Easy

Logic Black Box
Try practice test
Consider the following logic box. There are three inputs A, B, C and three outputs not A, not B and not C (not A = !A, not B = !B, not C = !C).

Is it possible to achieve the expected outputs from the inputs using:

- Only AND and OR gates
- Just two (2) NOT gates
- No NAND, NOR, XOR, or XNOR gates
 image

Medium

Memory Map
Memory Architecture
Try practice test
Review the following Embedded Systems code and memory map of 16-bit microcontroller:
 image
 image
Here are the specifications of the microcontroller:

- The stack grows from area D, whereas the program and static variables are stored in area C
- ‘int’ in the system is a 16-bit number
- There is no operating system and no memory protection
- The program is compiled and loaded into area C
Pick the correct statements:

A: first_var, second_var and input will be in area D
B: first_var and second_var will be in area C, input will be in area D
C: If the contents of 0x0010 at the start of the program is 7, the program will print 0 and exit
D: If the contents of 0x0010 at the start of the program is 42, the program will print 0 and exit
E: If the contents of 0x0010 at the start of the program is 42, the program will overflow the stack overwriting the program and static variables region
F: If the program overflows and overwrites the program and static variables region, arbitrary data is executed as if it is the program, causing unpredictable results

Medium

Multi-tasking
Multi-tasking
Try practice test
Review the following Embedded Systems code:
 image
Here’s the specification for the program:
- first_var and second_var are global variables shared among several threads
- first_lock and second_lock are mutex locks that protect access to first_var and second_var
- Reads and writes to variables first_var and second_var are not guaranteed to be atomic
- No locks must be acquired unnecessarily
- Acquire second_var lock first before acquiring first_var lock by any thread that is going to use both first_var and second_var
Assume that if a thread attempts to acquire a lock it already holds, then it is immediately granted the lock. Pick the correct statements:

A: The provided code does not meet the specification completely since second_lock is not acquired before acquiring first_lock for procedure 'foo'

B: Replacing foo with logic of foo1 makes sure locks are not acquired unnecessarily and  second_lock is acquired before acquiring first_lock

C: Replacing foo with logic of foo1 makes sure second_lock is acquired before acquiring first_lock but there are cases when second_lock is acquired unnecessarily (when first_var < input)

D: Replacing foo with logic of foo2 makes sure locks are not acquired unnecessarily

E: Replacing foo with logic of foo2 is optimized version of foo1 but there are cases when second_lock is still acquired unnecessarily (when first_var value changes from the time ‘res’ value is computed and by the first_lock is acquired again.

Medium

Memory Allocation
Try practice test
Check the following three C functions:
 image
Which among these will likely cause issues with pointers?

Medium

Pointers and Structs
Try practice test
What is the output of the following C code?
 image

Medium

Strings
Strings
Try practice test
What is the output of the following C code?
 image

Easy

Registration Queue
Logic
Queues
Solve
We want to register students for the next semester. All students have a receipt which shows the amount pending for the previous semester. A positive amount (or zero) represents that the student has paid extra fees, and a negative amount represents that they have pending fees to be paid. The students are in a queue for the registration. We want to arrange the students in a way such that the students who have a positive amount on the receipt get registered first as compared to the students who have a negative amount. We are given a queue in the form of an array containing the pending amount.
For example, if the initial queue is [20, 70, -40, 30, -10], then the final queue will be [20, 70, 30, -40, -10]. Note that the sequence of students should not be changed while arranging them unless required to meet the condition.
⚠️⚠️⚠️ Note:
- The first line of the input is the length of the array. The second line contains all the elements of the array.
- The input is already parsed into an array of "strings" and passed to a function. You will need to convert string to integer/number type inside the function.
- You need to "print" the final result (not return it) to pass the test cases.

For the example discussed above, the input will be:
5
20 70 -40 30 -10

Your code needs to print the following to the standard output:
20 70 30 -40 -10

Medium

Visitors Count
Strings
Logic
Solve
A manager hires a staff member to keep a record of the number of men, women, and children visiting the museum daily. The staff will note W if any women visit, M for men, and C for children. You need to write code that takes the string that represents the visits and prints the count of men, woman and children. The sequencing should be in decreasing order. 
Example:

Input:
WWMMWWCCC

Expected Output: 
4W3C2M

Explanation: 
‘W’ has the highest count, then ‘C’, then ‘M’. 
⚠️⚠️⚠️ Note:
- The input is already parsed and passed to a function.
- You need to "print" the final result (not return it) to pass the test cases.
- If the input is- “MMW”, then the expected output is "2M1W" since there is no ‘C’.
- If any of them have the same count, the output should follow this order - M, W, C.
🧐 Question🔧 Skill

Easy

Logic Black Box

3 mins

Embedded Systems
Try practice test

Medium

Memory Map
Memory Architecture

3 mins

Embedded Systems
Try practice test

Medium

Multi-tasking
Multi-tasking

2 mins

Embedded Systems
Try practice test

Medium

Memory Allocation

2 mins

C
Try practice test

Medium

Pointers and Structs

2 mins

C
Try practice test

Medium

Strings
Strings

2 mins

C
Try practice test

Easy

Registration Queue
Logic
Queues

30 mins

Coding
Solve

Medium

Visitors Count
Strings
Logic

30 mins

Coding
Solve
🧐 Question🔧 Skill💪 Difficulty⌛ Time
Logic Black Box
Embedded Systems
Easy3 mins
Try practice test
Memory Map
Memory Architecture
Embedded Systems
Medium3 mins
Try practice test
Multi-tasking
Multi-tasking
Embedded Systems
Medium2 mins
Try practice test
Memory Allocation
C
Medium2 mins
Try practice test
Pointers and Structs
C
Medium2 mins
Try practice test
Strings
Strings
C
Medium2 mins
Try practice test
Registration Queue
Logic
Queues
Coding
Easy30 minsSolve
Visitors Count
Strings
Logic
Coding
Medium30 minsSolve
Reason #4

1200+ customers in 75 countries

customers in 75 countries
Brandon

Med Adaface kunde vi optimera vår initiala screeningprocess med uppemot 75 %, vilket frigjorde dyrbar tid för både anställande chefer och vårt team för att förvärva talang!


Brandon Lee, Chef för människor, Love, Bonito

Try practice test
Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment Inbäddat C -test in your hiring process is that it is an elimination tool, not a selection tool. In other words: you want to use the test to eliminate the candidates who do poorly on the test, not to select the candidates who come out at the top. While they are super valuable, pre-employment tests do not paint the entire picture of a candidate’s abilities, knowledge, and motivations. Multiple easy questions are more predictive of a candidate's ability than fewer hard questions. Harder questions are often "trick" based questions, which do not provide any meaningful signal about the candidate's skillset.

Science behind Adaface tests
Reason #6

1 click candidate invites

Email invites: You can send candidates an email invite to the Inbäddat C -test from your dashboard by entering their email address.

Public link: You can create a public link for each test that you can share with candidates.

API or integrations: You can invite candidates directly from your ATS by using our pre-built integrations with popular ATS systems or building a custom integration with your in-house ATS.

invite candidates
Reason #7

Detailed scorecards & benchmarks

Visa exempelskort
Try practice test
Reason #8

High completion rate

Adaface tests are conversational, low-stress, and take just 25-40 mins to complete.

This is why Adaface has the highest test-completion rate (86%), which is more than 2x better than traditional assessments.

test completion rate
Reason #9

Advanced Proctoring


Learn more

About the Inbäddat C online -test

Why you should use Inbäddat C online -test?

The Inbäddat C -test makes use of scenario-based questions to test for on-the-job skills as opposed to theoretical knowledge, ensuring that candidates who do well on this screening test have the relavant skills. The questions are designed to covered following on-the-job aspects:

  • Kompetens inom C -grunder inklusive variabler, datatyper, deklarationer och funktioner
  • Stark förståelse av Embedded C Basics inklusive register, direktiv och förare
  • Kunskaper i att arbeta med pekare, inklusive matriser, strukturer och fackföreningar
  • Fördjupad kunskap om bitoperationer, inklusive förpackningsdata, uppackning av data och bitmanipulationer
  • Erfarenhet av I/O -operationer i C och dess korrelationer i inbäddade system
  • Bekanta med objektorienterade principer som polymorfism, arv och kapsling
  • Förståelse av interna för monterare och kompilator
  • Förmåga att effektivt felsöka koden och hantera fel
  • Kunskap om kompilatoroptimeringstekniker
  • Erfarenhet av tvärkompilerande verktygskedjor

Once the test is sent to a candidate, the candidate receives a link in email to take the test. For each candidate, you will receive a detailed report with skills breakdown and benchmarks to shortlist the top candidates from your pool.

What topics are covered in the Inbäddat C online -test?

  • Embäddade C Basics:

    Mastering Register, direktiv och förare i inbäddade C är avgörande för att kontrollera och interagera med hårdvarukomponenter som mikrokontroller och kringutrustning. P> pekare är en kraftfull funktion i C som möjliggör manipulation och tillgång till minnesadresser. Kunskap om pekare med matriser, strukturer och fackföreningar är viktig för minneshantering och effektiv datahantering.

  • bitoperationer:

    bitoperationer involverar förpackningar och packning av data på bitnivå, som samt utföra olika bitmanipulationer som inställning, rensning eller växling av specifika bitar. Denna färdighet är betydelsefull i inbäddade system där minnes- och beräkningsresurser är begränsade.

  • I/O i C och korrelationer i inbäddade system:

    Förstå ingångs-/utgångsoperationer i C och hur de de Förhållanden till inbäddade system är avgörande för att utveckla realtidsapplikationer och effektiv kommunikation mellan hårdvara och mjukvarukomponenter.

  • Objektorienterade principer:

    Kunskap om objektorienterade principer som polymorfism, arv, arv och inkapsling möjliggör utveckling av återanvändbar och modulär kod, förbättring av kodorganisation och underhåll.

  • Internal för monterare och kompilator:

    Förstå interna för monteraren och kompilatorn ger insikter i insikter i sammanställningsprocessen och möjliggör optimering av kod för bättre prestanda och effektivitet.

  • felsökning och felhantering:

    kunskaper i felsökningstekniker och felhantering är avgörande för felsökning och identifiering och lösning av problem i Inbäddade C-program, säkerställer pålitliga och robusta applikationer.

  • Kompileroptimering:

    att veta hur man optimerar kod med kompilatorspecifika funktioner och alternativ möjliggör generering av snabbare och effektivare binärer, ledande till förbättrad prestanda i inbäddade system.

  • tvärkompilerande verktygskedjor:

    Kunskap om tvärkompilingverktygskedjor är avgörande för att utveckla programvara på en plattform och generera körbara filer för en annan plattform, vilket är vanligt I den inbäddade systemdomänen.

  • Huvudskydd:

    Förståelse av huvudskyddstekniker hjälper till att förhindra problem som flera inkludering och konflikter mellan rubrikfiler, vilket säkerställer renare och mer hanterbar kod i inbäddade C -projekt.

  • startsekvens:

    kännedom om startsekvensen för inbäddade system är viktigt för att förstå systemstartprocessen, initialisera hårdvarukomponenter och utföra huvudapplikationskoden.

  • Full list of covered topics

    The actual topics of the questions in the final test will depend on your job description and requirements. However, here's a list of topics you can expect the questions for Inbäddat C -test to be based on.

    Variabler
    Datatyper
    Förklaringar
    Funktioner
    Register
    Direktiv
    Förare
    Pekare
    Matriser
    Strukturer
    Fackföreningar
    Bitoperationer
    Förpackningsdata
    Packa upp data
    Bitmanipulationer
    I/O i C
    Korrelationer i inbäddade system
    Objektorienterade principer
    Polymorfism
    Arv
    Inkapsling
    Assemblerare
    Kompilator
    Felsökning
    Felhantering
    Kompilatoroptimering
    Tvärkompilationskedjor
    Rubrikskydd
    Startsekvens
Try practice test

What roles can I use the Inbäddat C online -test for?

  • Inbäddad programvaruingenjör
  • Firmwareingenjör
  • Inbäddade systemutvecklare
  • Mikrokontrolltekniker
  • Inbäddad systemkonsult
  • Elektroniska och elektriska ingenjörer

How is the Inbäddat C online -test customized for senior candidates?

For intermediate/ experienced candidates, we customize the assessment questions to include advanced topics and increase the difficulty level of the questions. This might include adding questions on topics like

  • Expertis inom rubrikskydd i c
  • Förståelse av startsekvensen i inbäddade system
  • Kunskaper i hantering av avbrott och timers i inbäddade system
  • Erfarenhet av att arbeta med olika kommunikationsprotokoll (SPI, I2C, UART)
  • Förståelse av mjukvaruhårdvaruinteraktioner i inbäddade system
  • Kunskap om operativsystem i realtid (RTO) och deras implementering
  • Bekanta med enheter på låg nivå och perifer programmering
  • Kunskaper i firmwareutveckling och felsökning
  • Erfarenhet av optimeringstekniker med låg effekt för inbäddade system
  • Förmåga att utföra testning och verifiering på systemnivå
  • Kompetens inom design och implementering av effektiva algoritmer för inbäddade system
Singapore government logo

De rekryterande cheferna upplevde att de genom de tekniska frågorna som de ställde under panelintervjuerna kunde berätta vilka kandidater som hade bättre poäng och särskiljde sig med de som inte fick lika bra poäng. Dom är mycket nöjd med kvaliteten på kandidater som nominerades med Adaface-screeningen.


85%
minskning av screeningstiden

Inbäddat C online -test Vanliga frågor

Kan jag utvärdera C-kodningsfärdigheter och Embedded C-färdigheter i samma test?

Ja. Du kan granska vårt standard C onlinetest för att få en uppfattning om vilken typ av frågor som kommer att användas för att utvärdera C. Det slutliga testet kommer att ha MCQ-frågor för att utvärdera C, Embedded C och kodningsfrågor för att utvärdera C-kodningsfärdigheter.

Kan jag utvärdera C++ och Embedded C i samma test?

Ja. Du kan granska vårt standard C++ onlinetest för att få en uppfattning om vilken typ av frågor som kommer att användas för att utvärdera C++. Det sista testet kommer att ha MCQ-frågor för att utvärdera C++, Embedded C och kodningsfrågor för att utvärdera C/C++-kodningsfärdigheter.

Kan jag kombinera flera färdigheter till en anpassad bedömning?

Ja absolut. Anpassade bedömningar ställs in baserat på din arbetsbeskrivning och kommer att innehålla frågor om alla måste-ha färdigheter du anger.

Har du några anti-cheating eller proctoring-funktioner på plats?

Vi har följande anti-cheating-funktioner på plats:

  • Icke-Googleable-frågor
  • IP -proctoring
  • webbproctoring
  • webbkamera proctoring
  • Detektion av plagiering
  • säker webbläsare

Läs mer om proctoring -funktionerna.

Hur tolkar jag testresultat?

Det främsta att tänka på är att en bedömning är ett eliminationsverktyg, inte ett urvalsverktyg. En kompetensbedömning är optimerad för att hjälpa dig att eliminera kandidater som inte är tekniskt kvalificerade för rollen, den är inte optimerad för att hjälpa dig hitta den bästa kandidaten för rollen. Så det ideala sättet att använda en bedömning är att bestämma en tröskelpoäng (vanligtvis 55%, vi hjälper dig att jämföra) och bjuda in alla kandidater som gör poäng över tröskeln för nästa intervjurundor.

Vilken erfarenhetsnivå kan jag använda detta test för?

Varje AdaFace -bedömning anpassas till din arbetsbeskrivning/ idealisk kandidatperson (våra ämnesexperter kommer att välja rätt frågor för din bedömning från vårt bibliotek med 10000+ frågor). Denna bedömning kan anpassas för alla erfarenhetsnivåer.

Får varje kandidat samma frågor?

Ja, det gör det mycket lättare för dig att jämföra kandidater. Alternativ för MCQ -frågor och ordningen på frågor randomiseras. Vi har anti-cheating/proctoring -funktioner på plats. I vår företagsplan har vi också möjlighet att skapa flera versioner av samma bedömning med frågor om liknande svårighetsnivåer.

Jag är kandidat. Kan jag prova ett träningstest?

Nej. Tyvärr stöder vi inte övningstester just nu. Du kan dock använda våra exempelfrågor för övning.

Vad är kostnaden för att använda detta test?

Du kan kolla in våra prisplaner.

Kan jag få en gratis provperiod?

Plattformen är helt självbetjänande, så här är ett sätt att gå vidare:

  • Du kan registrera dig gratis för att få en känsla för hur det fungerar.
  • Den kostnadsfria provperioden inkluderar en provbedömning (Java/JavaScript) som du hittar i din instrumentpanel när du registrerar dig. Du kan använda den för att granska kvaliteten på frågorna och kandidaternas upplevelse av ett konversationstest på Adaface.
  • För att granska kvaliteten på frågorna kan du också granska våra offentliga frågor för 50+ färdigheter här.
  • När du är övertygad om att du vill testa det med riktiga bedömningar och kandidater kan du välja en plan enligt dina krav.

Jag flyttade precis till en betald plan. Hur kan jag begära en anpassad bedömning?

Här är en snabbguide om hur man begär en anpassad bedömning på Adaface.

customers across world
Join 1200+ companies in 75+ countries.
Prova det mest kandidatvänliga utvärderingsverktyget idag.
g2 badges
Ready to use the Adaface Inbäddat C -test?
Ready to use the Adaface Inbäddat C -test?
ada
Ada
● Online
✖️