Search test library by skills or roles
⌘ K

About the test:

De Typescript-test maakt gebruik van scenario-gebaseerde MCQ-vragen en code-traceringsvragen om het begrip van een kandidaat te evalueren van typescriptconcepten zoals typen, ES6-ondersteuning, OOP (klassen, modules, interfaces) en hun vermogen om asynchrone code te schrijven met async/wachten. Samen met TypeScript heeft de test MCQ-vragen om JavaScript-basisprincipes en coderingsvragen te evalueren om praktische coderingsvaardigheden te evalueren.

Covered skills:

  • JavaScript Fundamentals
  • Typescript basics (typen; ES6)
  • Objecten hergebruiken door erfenis
  • Inkapselende klassen/objecten
  • Gebruik van typoscript met webpack
  • Inzicht in DOM en webscripting
  • Objecten maken met behulp van klassen
  • Met behulp van verschillende toegangsmodificatoren
  • Asynchrone ontwikkeling met async/wachten
  • Uitzonderingsbehandeling

Try practice test
9 reasons why
9 reasons why

Adaface Typescript Test is the most accurate way to shortlist Webontwikkelaars



Reason #1

Tests for on-the-job skills

The Typescript 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:

  • Inzicht in en gebruik van fundamentele JavaScript -syntaxis en functies
  • Kennis van de DOM en het vermogen om webelementen te manipuleren
  • Typescript fundamentals, inclusief het begrijpen van typen en ES6 -functies
  • Het maken van objecten met behulp van klassen
  • Inzicht en implementatie van erfenis
  • Mogelijkheid om verschillende toegangsmodificaties te gebruiken
  • Kennis van inkapseling van klassen en objecten
  • Vaardigheid in asynchrone ontwikkeling met async/wachten
  • Ervaar het gebruik van typescript met webpack
  • Efficiënte afhandeling van uitzonderingen en fouten
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

Dit zijn slechts een klein monster uit onze bibliotheek met meer dan 10.000 vragen. De werkelijke vragen hierover Typescript online test zal niet-googelbaar zijn.

🧐 Question

Medium

Alias
OOPs
Try practice test
What does the following TypeScript code print?
 image
 image

Medium

Truthiness
Narrowing
Try practice test
We wrote the following TypeScript function to work as global print function. The function needs to handle string input, an array of strings as input or null as an input. In case of string and array of strings, it needs to print them to console. For null input, the code should not print anything.
 image
The function is throwing an error when it is called with null - globalConsole(null). This is happening because typeof null is ‘object’ in JavaScript. Here are two modifications of the code to handle this case:
 image
 image
Pick the correct statements:

A: In the case of null input, globalConsole1 won’t produce any compiler errors like globalConsole
B: In the case of null input, globalConsole2 won’t produce any compiler errors like globalConsole
C: globalConsole1 will differ from globalConsole for an empty string
D: globalConsole2 will differ from globalConsole for an empty string

Hard

Types
Try practice test
Consider the following TypeScript code: 
 image
Which of the following statements are correct:

A: The typescript compiler confirms that toUpperCase exists on the a instance.
B: The typescript compiler states that the toUpperCase function does not exist on the b instance.
C: The typescript compiler confirms that the toUpperCase function exists on the b instance.
D: RectangleType is an array where the type of a fixed number of elements is known.
E: Variables r, g, b are immutable.
F: r, g, b would compile to same type signature

Medium

Async Await Promises
Promises
Async-Await
Try practice test
What will the following code output?
 image
A: 24 after 5 seconds and after another 5 seconds, another 24
B: 24 followed by another 24 immediately
C: 24 immediately and another 24 after 5 seconds
D: After 5 seconds, 24 and 24
E: Undefined
F: NaN
G: None of these

Medium

Bitcoin prices
Axios
Promises
Try practice test
Review the following JavaScript code and pick the correct options: 
 image
Assume that the API returns a successful 200 response code and a JSON object as the response body. What would the value of ‘a’ be after the code is executed?

Medium

My Module
Scope
Try practice test
What will the output of the following JavaScript code be?
 image
 image

Medium

Promise Resolve
Promises
Async-Await
Try practice test
What does the following code output? 
 image

Easy

Throw, Try, Async
Promises
Async-Await
Try practice test
What does the following JS code output?
 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

Medium

Alias
OOPs

2 mins

TypeScript
Try practice test

Medium

Truthiness
Narrowing

3 mins

TypeScript
Try practice test

Hard

Types

2 mins

TypeScript
Try practice test

Medium

Async Await Promises
Promises
Async-Await

2 mins

JavaScript
Try practice test

Medium

Bitcoin prices
Axios
Promises

2 mins

JavaScript
Try practice test

Medium

My Module
Scope

2 mins

JavaScript
Try practice test

Medium

Promise Resolve
Promises
Async-Await

2 mins

JavaScript
Try practice test

Easy

Throw, Try, Async
Promises
Async-Await

2 mins

JavaScript
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
Alias
OOPs
TypeScript
Medium2 mins
Try practice test
Truthiness
Narrowing
TypeScript
Medium3 mins
Try practice test
Types
TypeScript
Hard2 mins
Try practice test
Async Await Promises
Promises
Async-Await
JavaScript
Medium2 mins
Try practice test
Bitcoin prices
Axios
Promises
JavaScript
Medium2 mins
Try practice test
My Module
Scope
JavaScript
Medium2 mins
Try practice test
Promise Resolve
Promises
Async-Await
JavaScript
Medium2 mins
Try practice test
Throw, Try, Async
Promises
Async-Await
JavaScript
Easy2 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

Met Adaface konden we ons eerste screeningproces met ruim 75% optimaliseren, waardoor kostbare tijd vrijkwam voor zowel de rekruteringsmanagers als ons talentacquisitieteam!


Brandon Lee, Hoofd Mensen, Love, Bonito

Try practice test
Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment Typescript online 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 Typescript online 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

Bekijk Sample Scorecard
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 Typescript Assessment Test

Why you should use Pre-employment Typescript online test?

The Typescript online 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:

  • Inzicht in JavaScript Fundamentals
  • Werken met de DOM- en webscripting
  • Typescript -basisprincipes toepassen, inclusief typen en functies van ES6
  • Objecten maken met behulp van klassen
  • Objecten hergebruiken door erfenis
  • Het toepassen van verschillende toegangsmodificatoren om klasse/objectgedrag te besturen
  • Klassen/objecten inkapselen voor betere codeorganisatie
  • Asynchroon ontwikkelen met behulp van async/wachten
  • Typescript gebruiken met webpack voor module bundeling
  • Het verwerken van uitzonderingen en fouten

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 Typescript online test?

  • Inzicht in DOM- en webscripting

    Een begrip van het documentobjectmodel (DOM) en Webscripting omvat het weten hoe HTML -elementen te manipuleren en dynamisch te communiceren met webpagina's met behulp van JavaScript. Dit is cruciaal voor het ontwikkelen van interactieve en responsieve webtoepassingen. Het testen van deze vaardigheid helpt bij het evalueren van het vermogen van de kandidaat om met de DOM te werken en webscripttaken uit te voeren.

  • Typescript -basics (typen; es6)

    Typescript basics omvatten belangrijke concepten zoals typanotaties, zoals typanotaties, Type inferentie en het gebruik van ES6 -functies. Het beoordelen van deze vaardigheid zorgt ervoor dat kandidaten een goed inzicht hebben in de syntaxis van de typescript en kunnen gebruik maken van de functies om type-safe en moderne JavaScript-code te schrijven.

  • objecten maken met klassen

    Objecten maken met klassen met behulp van klassen is een essentiële vaardigheid omdat het codeorganisatie mogelijk maakt en het creëren van herbruikbare, gestructureerde objecten in Typescript. Het evalueren van deze vaardigheid helpt bij het bepalen van de bekwaamheid van de kandidaat bij het gebruik van klassen om objecten te definiëren en instantiëren, waardoor een betere code -onderhoudbaarheid en uitbreidbaarheid mogelijk is.

  • het hergebruiken van objecten door overerving

    Het hergebruiken van objecten door erfenis is een belangrijk aspect een belangrijk aspect van objectgeoriënteerde programmering in typoscript. Deze vaardigheid omvat het begrijpen van hoe ze nieuwe klassen kunnen afleiden van bestaande en hun eigenschappen en methoden kunnen erven. Het testen van deze vaardigheid zorgt ervoor dat kandidaten effectief overerving kunnen gebruiken om code -hergebruik te bereiken en modulair ontwerp te bevorderen.

  • met behulp van verschillende toegangsmodifiers

    met behulp van verschillende toegangsmodificaties, zoals openbaar, privé en beschermd , maakt het mogelijk om de zichtbaarheid en toegang van klasleden te beheersen. Het beoordelen van deze vaardigheid helpt bij het evalueren van het vermogen van de kandidaat om inkapseling te implementeren en de juiste gegevens over gegevens te handhaven en abstractie in typecriptcode.

  • inkapselen van klassen/objecten

    Inkapselende klassen/objecten omvat de praktijk van het bundelen van gegevens bundelende gegevens en methoden binnen een klasse, die een niveau van inkapseling bieden en de internals beschermen tegen externe interferentie. Deze vaardigheidsevaluatie zorgt ervoor dat kandidaten effectief goed georganiseerde, modulaire code in typescript kunnen inkapselen en creëren.

  • asynchrone ontwikkeling met async/wachten

    asynchrone ontwikkeling met async/wachten omvat het schrijven van code die kan dat code dat kan dat kan dat code kan schrijven Behandel asynchrone bewerkingen en beheren beloften op een meer leesbare en onderhoudbare manier. Het testen van deze vaardigheid helpt bij het beoordelen van het vermogen van de kandidaat om asynchrone code te schrijven met behulp van async/wachtsyntaxis, waardoor een betere afhandeling van bewerkingen zoals API -oproepen, bestandslezen/schrijven en meer.

  • gebruik van typescript met webpack <// H4> <p> Gebruik van typescript met webpack verwijst naar de mogelijkheid om TypeScript te integreren in een webpack-gebaseerde ontwikkelingsworkflow. Dit omvat het instellen van typescriptconfiguratie, het beheren van modulebundeling en het gebruik van webpackfuncties zoals codesplitsing en dynamische import. Het evalueren van deze vaardigheid verifieert de bekwaamheid van de kandidaat bij het gebruik van typescript met webpack voor geoptimaliseerde en efficiënte ontwikkeling. </p> <h4> uitzonderingsbehandeling

    Uitzonderingsbehandeling is de praktijk van het vangen en hanteren van fouten of uitzonderingen die zich voordoen tijdens het Uitvoering van een programma. Het beoordelen van deze vaardigheid helpt bij het bepalen van het vermogen van de kandidaat om fouten sierlijk af te handelen en de juiste foutafhandelingsmechanismen in TypeScript te implementeren, waardoor robuustere en betrouwbare code wordt gewaarborgd.

  • 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 Typescript online test to be based on.

    Variabelen
    Functie
    Voorwerpen
    Arrays
    Conditionals
    Lussen
    Hijs
    Klootzak
    Sluitingen
    Prototypes
    ES6
    Pijlfuncties
    Vernietigen
    Spread Syntax
    Rest parameters
    Sjabloonliteralen
    Klassen
    Erfenis
    Polymorfisme
    Inkapseling
    Toegang tot modificatoren
    Interfaces
    Modules
    Beloften
    Async/wachten
    Typecompiler
    Type annotaties
    Type inferentie
    Type Guards
    Verklaring samenvoegen
    Naamruimte
    Merkloos product
    Decorateurs
    Webpack -configuratie
    Toegangspunten
    Laders
    Plug -ins
    Code splitsen
    Boom schudt
    Uitzonderingsbehandeling
    Evenementbehandeling
    DOM -manipulatie
    AJAX
    Web API's
    Lokale opslag
    SessionStorage
    HTML5 canvas
    Foutafhandeling
    Code debuggen
    Testen van een eenheid
    Bespotten
    Git -versiebeheer
    Takken
    Fuseren
    Commits
    Stilling
    Repository klonen
    Duwen en trekken
    Conflictoplossing
Try practice test

What roles can I use the Typescript online test for?

  • Webontwikkelaar
  • Software ontwikkelaar
  • Volledige stapelontwikkelaar
  • Front -end ontwikkelaar
  • Back End -ontwikkelaar
  • UI -ontwikkelaar
  • JavaScript -ontwikkelaar
  • Typescript -ontwikkelaar
  • Hoekige ontwikkelaar
  • Reageer ontwikkelaar
  • Senior Software Engineer (Typescript)

How is the Typescript 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

  • Objectgeoriënteerde programmeerprincipes implementeren
  • Debuggen van JavaScript en Typescript -code
  • Codeprestaties optimaliseren
  • Implementatie van eenheidstests voor JavaScript- en TypeScript -code
  • Met behulp van ontwerppatronen in JavaScript en TypeScript
  • Gebruikmakend van functionele programmeerconcepten in JavaScript
  • Gebruik van gegevensstructuren en algoritmen in JavaScript en TypeScript
  • Werken met RESTful API's met behulp van JavaScript en TypeScript
  • Integratie van externe bibliotheken en frameworks in JavaScript en TypeScript
  • JavaScript en Typescript -applicaties implementeren op productieomgevingen

The coding question for experienced candidates will be of a higher difficulty level to evaluate more hands-on experience.

Singapore government logo

De rekruteringsmanagers waren van mening dat ze door de technische vragen die ze tijdens de panelgesprekken stelden, konden zien welke kandidaten beter scoorden, en onderscheidden ze zich met degenen die niet zo goed scoorden. Zij zijn zeer tevreden met de kwaliteit van de kandidaten op de shortlist van de Adaface-screening.


85%
Vermindering van de screeningstijd

Typescript Hiring Test Veelgestelde vragen

Kan ik JavaScript en TypeScript in dezelfde test evalueren?

Ja. Wij ondersteunen het testen van meerdere vaardigheden in dezelfde test. U kunt onze standaard JavaScript-test bekijken om een ​​idee te krijgen van wat voor soort vragen er zullen worden opgenomen om alleen JavaScript te testen. De laatste test omvat MCQ-vragen om TypeScript en JavaScript te evalueren, en codeervragen om JavaScript te evalueren.

Kan ik React en TypeScript in dezelfde test evalueren?

Ja. Wij ondersteunen het testen van meerdere vaardigheden in dezelfde test. U kunt onze standaard React-test bekijken om een ​​idee te krijgen van wat voor soort vragen er zullen worden opgenomen om React-vaardigheden te testen. De laatste test omvat MCQ-vragen om React-, TypeScript-, HTML/CSS- en codeervragen te evalueren.

Kan ik VueJS met TypeScript in dezelfde test evalueren?

Ja. Wij ondersteunen het testen van meerdere vaardigheden in dezelfde test. U kunt onze standaard Vue JS-test bekijken om een ​​idee te krijgen van wat voor soort vragen er zullen worden opgenomen om Vue-vaardigheden te testen. De laatste test omvat MCQ-vragen om Vue-, TypeScript-, HTML/CSS- en codeervragen te evalueren.

Kan ik Angular met TypeScript in dezelfde test evalueren?

Ja. Wij ondersteunen het testen van meerdere vaardigheden in dezelfde test. U kunt onze standaard Angular-test bekijken om een ​​idee te krijgen van wat voor soort vragen er zullen worden opgenomen om Angular-vaardigheden te testen. De laatste test omvat MCQ-vragen om Angular-, TypeScript-, HTML/CSS- en codeervragen te evalueren.

Hoe wordt de test aangepast voor Backend NodeJS TypeScript-ontwikkelaars?

De test omvat op scenario's gebaseerde MCQ-vragen om Node JS, TypeScript, REST-vaardigheden en codeervragen te evalueren. U kunt onze standaard NodeJS-test bekijken om te begrijpen hoe we NodeJS-vragen ontwerpen.

Kan ik meerdere vaardigheden combineren in één aangepaste beoordeling?

Ja absoluut. Aangepaste beoordelingen zijn opgezet op basis van uw functiebeschrijving en bevatten vragen over alle must-have vaardigheden die u opgeeft.

Heeft u functies tegen latere of proctoring op hun plaats?

We hebben de volgende anti-cheating-functies op zijn plaats:

  • Niet-googelbare vragen
  • IP Proctoring
  • Web Proctoring
  • Webcam Proctoring
  • Plagiaatdetectie
  • Beveilig browser

Lees meer over de Proctoring -functies.

Hoe interpreteer ik testscores?

Het belangrijkste om in gedachten te houden is dat een beoordeling een eliminatietool is, geen selectietool. Een vaardighedenbeoordeling is geoptimaliseerd om u te helpen kandidaten te elimineren die niet technisch gekwalificeerd zijn voor de rol, het is niet geoptimaliseerd om u te helpen de beste kandidaat voor de rol te vinden. Dus de ideale manier om een ​​beoordeling te gebruiken is om een ​​drempelscore te bepalen (meestal 55%, wij helpen u benchmark) en alle kandidaten uit te nodigen die boven de drempel scoren voor de volgende interviewrondes.

Voor welk ervaringsniveau kan ik deze test gebruiken?

Elke ADAFACE -beoordeling is aangepast aan uw functiebeschrijving/ ideale kandidaatpersonage (onze experts van het onderwerp zullen de juiste vragen kiezen voor uw beoordeling uit onze bibliotheek van 10000+ vragen). Deze beoordeling kan worden aangepast voor elk ervaringsniveau.

Krijgt elke kandidaat dezelfde vragen?

Ja, het maakt het veel gemakkelijker voor u om kandidaten te vergelijken. Opties voor MCQ -vragen en de volgorde van vragen worden gerandomiseerd. We hebben anti-cheating/proctoring functies. In ons bedrijfsplan hebben we ook de optie om meerdere versies van dezelfde beoordeling te maken met vragen over vergelijkbare moeilijkheidsniveaus.

Ik ben een kandidaat. Kan ik een oefentest proberen?

Nee. Helaas ondersteunen we op dit moment geen oefentests. U kunt echter onze voorbeeldvragen gebruiken voor praktijk.

Wat zijn de kosten van het gebruik van deze test?

U kunt onze [prijsplannen] bekijken (https://www.adaface.com/pricing/).

Kan ik een gratis proefperiode krijgen?

Ja, u kunt gratis aanmelden en een voorbeeld van deze test.

Ik ben net naar een betaald plan verhuisd. Hoe kan ik een aangepaste beoordeling aanvragen?

Hier is een korte handleiding over hoe een aangepaste beoordeling aanvragen op Adaface.

customers across world
Join 1200+ companies in 75+ countries.
Probeer vandaag de meest kandidaatvriendelijke vaardighedenbeoordelingstool.
g2 badges
Ready to use the Adaface Typescript online test?
Ready to use the Adaface Typescript online test?
ada
Ada
● Online
✖️