Search test library by skills or roles
⌘ K

About the test:

The JavaScript, HTML/CSS & React Test uses scenario-based MCQs to evaluate candidates on their proficiency in JavaScript programming language, HTML/CSS markup, and React library. The test assesses candidates' understanding of topics such as DOM manipulation, event handling, component lifecycle, state management, props and rendering, and CSS styling. Candidates are evaluated on their ability to use these technologies to solve real-world problems and develop responsive and interactive web applications.

Covered skills:

  • Typen und Operatoren
  • Variablen
  • Schleifen
  • Funktionen
See all covered skills

9 reasons why
9 reasons why

Adaface JavaScript, HTML/CSS & React Online Test is the most accurate way to shortlist candidates



Reason #1

Tests for on-the-job skills

The JavaScript, HTML/CSS & React 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.

Non-googleable questions & proctoring features enable you to be comfortable with conducting assessments online. The JavaScript, HTML/CSS & React Online Test is ideal for helping recruiters identify which candidates have the skills to do well on the job.

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.

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

Dies sind nur ein kleines Beispiel aus unserer Bibliothek mit mehr als 10.000 Fragen. Die tatsächlichen Fragen dazu JavaScript, HTML/CSS & React Test wird nichtgänger sein.

🧐 Question

Medium

Async Await Promises
Promises
Async-Await
Solve
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

Easy

Bitcoin prices
Axios
Promises
Solve
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
Solve
What will the output of the following JavaScript code be?
 image
 image

Medium

Promise Resolve
Promises
Async-Await
Solve
What does the following code output? 
 image

Easy

Throw, Try, Async
Promises
Async-Await
Solve
What does the following JS code output?
 image

Medium

Background Properties
Solve
Consider the following shorthand CSS example:

background: #f7f7f7 url(jolie.jpg) no-repeat scroll 0px 0px;

Which of the following show the individual background properties represented by the shorthand:
 image

Easy

Colorful sentences
Solve
Our intern is writing a colorful blog post, and has written the following code. What colors will the sentences be?
 image
A: Sentence 1 will be gray, Sentence 2 will be pink.
B: Both sentences will be gray.
C: Sentence 1 will be pink, Sentence 2 will be gray.
D: Both sentences will be pink.
E: The code does not make sense; will throw an error.

Medium

Links
Solve
In the following HTML, what will be the color of link with class "mark"
 image

Medium

Let's Hack
CSS Property
Solve
Consider the following HTML and CSS:
 image
 image
Which additional CSS rule(s) will render the following image? Choose ALL that apply.
 image
A:
div{
  flex-direction : column;
  align-items : center;
}
B:
div{
  flex-direction : row;
  align-items: center;
}
C:
div{
  flex-direction: column;
  justify-content: center;
}
D:
div{
  flex-direction: row;
  justify-content: center;
}

Medium

Context re-renders
Context
Solve
Review the following React code:
 image
Pick the correct statements:

A: The code renders 10 INDIAN RUPEE
B: The code renders 10 SINGAPORE DOLLAR
C: The code does not render anything and throws an error since JavaScript objects are not valid as React children
D: When the currency portion is clicked, the parent component is re-rendered
E: When the currency portion is clicked, parent component will skip the re-render because shouldComponentUpdate returns false
F: Parent component can be converted to a functional component with memoization (useMemo or memo) to avoid the re-render

Medium

Error Boundaries and Event handlers
Error Boundaries
Solve
Review the following React code:
 image
Notice that clicking on ‘Click Me’ will invoke handleClick which will throw an error. Also note that, ErrorBoundaryOne throws the error in getDerivedStateFromError. What will be rendered once ‘Click Me’ is clicked?
A: ErrorBoundaryOne will catch the error of MyComponent and <h1>C</h1> will be rendered
B: ErrorBoundaryOne will catch the error of MyComponent and its own error, <h1>C</h1> will be rendered
C: ErrorBoundaryTwo will catch the error of MyComponent and ErrorBoundaryOne, <h1>B</h1> will be rendered
D: ErrorBoundaryTwo will catch the error of MyComponent and ErrorBoundaryOne, <h1>B</h1><h1>C</h1> will be rendered
E: ErrorBoundaryTwo will catch the error of ErrorBoundaryOne. ErrorBoundaryOne will catch the error of MyComponent, <h1>B</h1> will be rendered
F: Error thrown in the click handler is not caught by any error boundary, ‘Click Me’ button will be rendered

Medium

Rhyme Reducer
Hooks
Solve
Which of the following React code snippets
- triggers the reducer ‘rhymeReducer’ to update the ‘song’ value to ‘Jack and Jill’
- renders the updated ‘song’ value
- does not produce any errors/warnings
 image
 image

Easy

Registration Queue
Logic
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

Longest Road
logic
hashmaps
Solve
A startup company E-Motors is building driverless automated cars. The car contains a sensor that checks the road quality for the next N meters to decide the optimal speed at which the cars should move. We are given recorded data by the sensor in the form of an array, where each element of the array is the rating given to 1 meter of the road in sequence. 

The rating given by the sensor is from 1 to 100, where 100 represents the road with the best condition, and any rating above 60 is optimal. Find the longest stretch of road in meters that is categorized as optimal by the sensor.

The input is an array of "strings" which needs to be converted from string to integer/number inside the function.

Medium

Visitors Count
Strings
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

Async Await Promises
Promises
Async-Await
2 mins
JavaScript
Solve

Easy

Bitcoin prices
Axios
Promises
2 mins
JavaScript
Solve

Medium

My Module
Scope
2 mins
JavaScript
Solve

Medium

Promise Resolve
Promises
Async-Await
2 mins
JavaScript
Solve

Easy

Throw, Try, Async
Promises
Async-Await
2 mins
JavaScript
Solve

Medium

Background Properties
2 mins
HTML/CSS
Solve

Easy

Colorful sentences
2 mins
HTML/CSS
Solve

Medium

Links
2 mins
HTML/CSS
Solve

Medium

Let's Hack
CSS Property
3 mins
HTML/CSS
Solve

Medium

Context re-renders
Context
3 mins
React
Solve

Medium

Error Boundaries and Event handlers
Error Boundaries
3 mins
React
Solve

Medium

Rhyme Reducer
Hooks
3 mins
React
Solve

Easy

Registration Queue
Logic
30 mins
Coding
Solve

Medium

Longest Road
logic
hashmaps
25 mins
Coding
Solve

Medium

Visitors Count
Strings
30 mins
Coding
Solve
🧐 Question🔧 Skill💪 Difficulty⌛ Time
Async Await Promises
Promises
Async-Await
JavaScript
Medium2 mins
Solve
Bitcoin prices
Axios
Promises
JavaScript
Easy2 mins
Solve
My Module
Scope
JavaScript
Medium2 mins
Solve
Promise Resolve
Promises
Async-Await
JavaScript
Medium2 mins
Solve
Throw, Try, Async
Promises
Async-Await
JavaScript
Easy2 mins
Solve
Background Properties
HTML/CSS
Medium2 mins
Solve
Colorful sentences
HTML/CSS
Easy2 mins
Solve
Links
HTML/CSS
Medium2 mins
Solve
Let's Hack
CSS Property
HTML/CSS
Medium3 mins
Solve
Context re-renders
Context
React
Medium3 mins
Solve
Error Boundaries and Event handlers
Error Boundaries
React
Medium3 mins
Solve
Rhyme Reducer
Hooks
React
Medium3 mins
Solve
Registration Queue
Logic
Coding
Easy30 minsSolve
Longest Road
logic
hashmaps
Coding
Medium25 minsSolve
Visitors Count
Strings
Coding
Medium30 minsSolve
Reason #4

1200+ customers in 75 countries

customers in 75 countries
Brandon

Mit Adaface konnten wir unseren ersten Screening -Prozess um über 75%optimieren und die wertvolle Zeit sowohl für Einstellungsmanager als auch für unser Talentakquisitionsteam gleichermaßen freien!


Brandon Lee, Leiter der Menschen, Love, Bonito

Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment JavaScript, HTML/CSS & React 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.

Reason #6

1 click candidate invites

Email invites: You can send candidates an email invite to the JavaScript, HTML/CSS & React 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 & comparative results

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


What topics are covered in the JavaScript, HTML/CSS & React Online Test?

Typen und Operatoren
Schleifen
Variablen
Funktionen
Arrays
Objekte
Saiten
Dom
HTML/ CSS -Grundlagen
Schließungen
Iife
Hoppla
Es6
Mathematik
Kekse
JSON
Asynchron/wartet
Versprechen
Pfeile
Timer
Zerstören
Lokaler Speicher
Sitzungspeicher
Konsole
Dies "," rufen "," binden "Schlüsselwörter
Handhabung des Events
Ausnahmebehandlung
Handhabung der Form
Servicearbeiter
Kernhtml -Tags
Die Struktur einer HTML -Seite
Abstand
Textformatierung und Dekoration
Listen
Tische
Bilder und Hintergrundbilder
Flexbox
Netz
Boxmodell
Positionierungsschemata
Nachlass
Medien-Anfragen
CSS -Eigenschaften
Pseudoklassen
Klassen, Spannweiten, Abteilungen
Texteigenschaften, Ränder und Polsterung
Grenzen, Hintergründe und Transparenz
Positionierung - Relativ, absolut, fest, float, klar
Z-Index
Übergänge
Animationen
Reaktionsabschnitte
Videos einbetten
Anker/ Links
Tische und verschachtelte Tische
Gebäudeformen
Iframes einbetten
SVGs
Dateireferenzierung
Tasten
Eingabebereiche
Wählen Sie Menüs
Navigation
Schriftarten
Formen
Vorverarbeiter
Klassenbasierte Komponenten
Funktionale Komponenten
Requisiten
Zustand
Veranstaltungen
Listen
Eingebaute Haken
Benutzerdefinierte Haken
Gestaltete Komponenten
CSS -Module
Fragmente
Portale
Umgang mit Nebenwirkungen
Übergangszustände
Formen und Eingaben
Staatsmanagement
Routing & Navigation
Authentifizierung
Animationen
Webpack
Flexbox
Kontext
ussten
Verwendungseffekt
Usereducer
Usecontext
Reduzierer
JWT -Authentifizierung
Computergrundlagen
Briefcodierung
Zahlencodierung
Auswechslung
Coding-Decoding-Rätsel
Nonverbales Denken
SQL -Konzepte
Wirtschaftsanalyse
Codierungsabbau
Programmiersprachen
Rechnerarchitektur
Grundlegende DBMS -Konzepte
Solide Prinzipien
Automatisierungssysteme
Entscheidung fällen
Nonverbales Denken
Problemlösungsansatz
Singapore government logo

Die Einstellungsmanager waren der Ansicht, dass sie durch die technischen Fragen, die sie während der Panel -Interviews gestellt hatten, erkennen konnten, welche Kandidaten bessere Punktzahlen hatten, und sich von denen unterschieden, die nicht so gut gespielt hatten. Sie sind Sehr zufrieden Mit der Qualität der Kandidaten, die mit dem Adaface -Screening in die engere Wahl gezogen wurden.


85%
Verringerung der Screening -Zeit

FAQs

Kann ich mehrere Fähigkeiten zu einer benutzerdefinierten Bewertung kombinieren?

Ja absolut. Basierend auf Ihrer Stellenbeschreibung werden benutzerdefinierte Bewertungen eingerichtet und enthalten Fragen zu allen von Ihnen angegebenen Must-Have-Fähigkeiten.

Haben Sie Anti-Cheating- oder Proctoring-Funktionen?

Wir haben die folgenden Anti-Cheating-Funktionen:

  • Nicht-Googling-Fragen
  • IP -Verbreitung
  • Web -Verbreitung
  • Webcam -Proctoring
  • Plagiaterkennung
  • sicherer Browser

Lesen Sie mehr über die Proctoring -Funktionen.

Wie interpretiere ich die Testergebnisse?

Die wichtigste Sache, die Sie beachten sollten, ist, dass eine Bewertung ein Eliminierungswerkzeug ist, kein Auswahlwerkzeug. Eine Bewertung der Qualifikationsbewertung wird optimiert, um Ihnen zu helfen, Kandidaten zu beseitigen, die technisch nicht für die Rolle qualifiziert sind. Sie ist nicht optimiert, um Ihnen dabei zu helfen, den besten Kandidaten für die Rolle zu finden. Die ideale Möglichkeit, eine Bewertung zu verwenden, besteht also darin, einen Schwellenwert zu entscheiden (in der Regel 55%, wir helfen Ihnen bei der Benchmark) und alle Kandidaten einladen, die für die nächsten Interviewrunden über dem Schwellenwert punkten.

Für welche Erfahrung kann ich diesen Test verwenden?

Jede Adaface -Bewertung ist an Ihre Stellenbeschreibung/ ideale Kandidatenpersönlichkeit angepasst (unsere Experten für Fache werden die richtigen Fragen für Ihre Bewertung aus unserer Bibliothek mit über 10000 Fragen auswählen). Diese Einschätzung kann für jede Erfahrungsstufe angepasst werden.

Bekommt jeder Kandidat die gleichen Fragen?

Ja, es macht es Ihnen viel einfacher, Kandidaten zu vergleichen. Optionen für MCQ -Fragen und die Reihenfolge der Fragen werden randomisiert. Wir haben Anti-Cheating/Proctoring Funktionen. In unserem Unternehmensplan haben wir auch die Möglichkeit, mehrere Versionen derselben Bewertung mit Fragen mit ähnlichen Schwierigkeitsgraden zu erstellen.

Ich bin ein Kandidat. Kann ich einen Übungstest ausprobieren?

Nein, leider unterstützen wir derzeit keine Übungstests. Sie können jedoch unsere Beispielfragen zur Praxis verwenden.

Was kostet die Verwendung dieses Tests?

Sie können unsere Preispläne überprüfen.

Kann ich eine kostenlose Testversion erhalten?

Ja, Sie können sich kostenlos anmelden und eine Vorschau dieses Tests.

Ich bin gerade zu einem bezahlten Plan gezogen. Wie kann ich eine benutzerdefinierte Bewertung anfordern?

Hier finden Sie eine kurze Anleitung zu wie Sie eine benutzerdefinierte Bewertung anfordern auf Adaface.

customers across world
Join 1200+ companies in 75+ countries.
Probieren Sie noch heute das Tool für die Bewertung von Kandidaten für freundliche Fähigkeiten aus.
g2 badges
Ready to use the Adaface JavaScript, HTML/CSS & React Test?
Ready to use the Adaface JavaScript, HTML/CSS & React Test?
chatte mit uns
logo
40 min tests.
No trick questions.
Accurate shortlisting.
Bedingungen Privatsphäre Trust -Leitfaden

🌎 Wählen Sie Ihre Sprache aus

English Norsk Dansk Deutsche Nederlands Svenska Français Español Chinese (简体中文) Italiano Japanese (日本語) Polskie Português Russian (русский)
ada
Ada
● Online
Previous
Score: NA
Next
✖️