Search test library by skills or roles
⌘ K

About the test:

The React Native Test uses scenario-based MCQ questions to evaluate a candidate's ability to build interactive, media-rich React Native applications and publish them using Google/ App stores. The questions assess core React Native concepts (components, state and props), state management fundamentals, accessing native features and proper usage of RESTful APIs. The test also has MCQs and coding questions to evaluate hands-on JavaScript programming skills.

Covered skills:

  • Core React Native (components; state; props)
  • Handling screen layouts
  • Functional components and Hooks
  • Styled-components
See all covered skills

9 reasons why
9 reasons why

Adaface React Native Online Test (React Native + JavaScript) is the most accurate way to shortlist React Native Developers



Reason #1

Tests for on-the-job skills

Natywny test React ocenia następujące natywne tematy React oczekiwane przez menedżerów zatrudniania od REAct Native Developers:

  • Jak używać komponentów React, JavaScript i natywnych
  • Core React Native Concepts, takie jak praca z komponentami, stanem i rekwizytami
  • Nawigacja w React Native Apps
  • Stylizacja i animowanie reakcji natywnych komponentów- komponenty stylowe i rodzime stylizacja
  • Najnowsze funkcje reakcji- haczyki, interfejsy API, asynkstorage
  • Korzystanie z natywnych funkcji telefonicznych, takich jak aparat i wibracje
  • API Google Maps i dodawanie interaktywnych map
  • Łączenie z serwerem zaplecza z aplikacji- asynchroniczne interfejsy API w celu pobierania i aktualizacji
  • Uwierzytelnianie bezpieczeństwa, ograniczanie tras
  • Instalowanie niestandardowych czcionek

Ponadto ocena zawiera pytania MCQ i kodowanie w celu oceny praktycznych umiejętności kodowania JavaScript. Zmniejsza koszty administracyjne przeprowadzania wywiadów z zbyt wieloma kandydatami i oszczędza drogi czas inżynierii, odfiltrowując niewykwalifikowane kandydatów.

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.

To tylko niewielka próbka z naszej biblioteki ponad 10 000 pytań. Rzeczywiste pytania dotyczące tego React Native Online Test będzie nieobowiązany.

🧐 Question

Medium

Fallback Error
Error Boundaries
Solve
Review the following React Native Code:
 image
We have two ErrorBoundary classes. Notice that both MyComponent and ErrorBoundaryOne throw errors. What ‘Text’ would be rendered in the screen?

Easy

Flex
Solve
What is the best way to create following React Native layout with containers 1,2,3?
 image
 image

Medium

Home and Details Screen
Navigation
Solve
Review the following React Native code:
 image
The app has two screens (Home and Details) as shown below:
 image
 image
Review the following tests:

Test 1 - Click on ‘Navigate.navigate(’Details’)’ button on Home screen, then the same button on the Details screen. Then click on the “back” button of the device/screen.

Test 2 - Click on ‘Navigate.push(’Details’)’ button on Home screen, then the same button on the Details screen. Then we clicked on the “back” button of the device/screen.

Test 3 -  Click on ‘Navigate.navigate(’Details’)’ button on Home screen, then ‘Navigate.push(’Details’)’ button on the Details screen. Then click on the “back” button of the device/ screen.

Test 4 -  Click on ‘Navigate.push(’Details’)’ button on Home screen, then ‘Navigate.navigate(’Details’)’ button on the Details screen. Then click on the “back” button of the device/ screen.
Pick the correct statements:

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

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

Fallback Error
Error Boundaries
3 mins
React Native
Solve

Easy

Flex
2 mins
React Native
Solve

Medium

Home and Details Screen
Navigation
3 mins
React Native
Solve

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

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
Fallback Error
Error Boundaries
React Native
Medium3 mins
Solve
Flex
React Native
Easy2 mins
Solve
Home and Details Screen
Navigation
React Native
Medium3 mins
Solve
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
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

Dzięki Adaface byliśmy w stanie zoptymalizować nasz początkowy proces badania przesiewowego o 75%, uwalniając cenny czas zarówno dla menedżerów ds. Zatrudnienia, jak i naszego zespołu pozyskiwania talentów!


Brandon Lee, Głowa ludzi, Love, Bonito

Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment React Native 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.

Reason #6

1 click candidate invites

Email invites: You can send candidates an email invite to the React Native 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 & 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


Wraz z React Native, jakie umiejętności są testowane w tym teście

Test identyfikuje kandydatów, którzy mają następujące umiejętności, którzy idą w parze z react natywnymi umiejętnościami do reagowania natywnego rozwoju aplikacji:

  • Solidna znajomość JavaScript
  • Dokładne zrozumienie rodzimych iOS i Androida
  • Głęboka znajomość podstawowych założeń React
  • Umiejętności optymalizacji wydajności
  • Znajomość struktur danych
  • Znajomość podstaw deweloperów JS, takich jak HTML 5, CSS 3,
  • Doświadczenie z pisaniem jednostek i testów funkcjonalnych
  • Możliwość pisania kodu wielokrotnego użytku

W jaki sposób test jest dostosowywany dla starszych rdzennych programistów?

Pytania będą miały wyższy poziom trudności i zostaną ocenione zaawansowane tematy. Oto kilka zaawansowanych tematów, których używamy do projektowania pytań dla kandydatów pośrednich/ doświadczonych:

  • Zaawansowane zarządzanie państwem z kontekstem
  • Praca ze starymi wersjami React Native
  • Obsługa płatności
  • Uwierzytelnianie i zarządzanie kontami użytkowników za pomocą Firebase
  • Optymalizacje wydajności, takie jak paginacja i leniwe dane ładowania
  • Oddawanie wielu żądań dla tych samych danych na jedno żądanie
  • Zarządzanie zbiorem pamięci i śmieci stanu serwera
  • Pamięć wyniki zapytania z dzieleniem się strukturalnym
  • Obsługa funkcjonalności offline z Redux trwa (trwałość danych offline)
  • Powiadomienia o popychaniu między platformami
  • Obsługa gestów

What roles can I use the React Native Online Test for?

  • React Native Developer
  • React Native Mobile Developer
  • React Native iOS Developer
  • Senior Software Developer (React Native)
  • React Native Engineer
  • Android Developer (React Native)
  • React Native Lead
  • Senior Mobile Developer (React Native)

What topics are covered in the React Native Online Test (React Native + JavaScript)?

składniki
Listy
Układy
Nawigacja
Haczyki
Kontekst
Publikowanie/ dystrybucja
Pszczoła
Zarządzanie państwem
Kamera
Mapy
Asyncstorage
Animacje
SessionStorage
Niestandardowe czcionki
Expo
Gesty
Powiadomienia
Uprawnienia
Offline
Uwierzytelnianie
Pamięć podręczna
Flexbox
Czcionki
Państwo
Rekwizyty
Redux
Obrazy
Wirtualny dom
Flexbox
ES6
Maszynopis
Singapore government logo

Menedżerowie ds. Zatrudnienia uważali, że poprzez pytania techniczne, które zadali podczas wywiadów panelowych, byli w stanie powiedzieć, którzy kandydaci mieli lepsze wyniki, i różnili się od tych, którzy również nie zdobyli bramki. Oni są Bardzo zadowolony z jakością kandydatów na liście przesiewowej Adaface.


85%
Zmniejszenie czasu badań przesiewowych

React Native Online Test FAQs

Can I evaluate JavaScript and React Native skills in the same assessment?

Yes. You can check our standard JavaScript test to get a sense of JavaScript questions.

Can I evaluate Android and React Native skills in the same assessment?

Yes. You can evaluate Android and React Native skills in the same assessment. You can review our standard Android test to get a sense of what kind of questions will be included. The final assessment will include questions to evaluate JavaScript, Android, React Native and coding skills in the same test.

Can I evaluate iOS and React Native skills in the same assessment?

Yes. You can evaluate iOS and React Native skills in the same assessment. You can review our standard iOS test to get a sense of what kind of questions will be included. The final assessment will include questions to evaluate JavaScript, iOS, React Native and coding skills in the same test.

Czy mogę połączyć wiele umiejętności w jedną niestandardową ocenę?

Tak, absolutnie. Oceny niestandardowe są konfigurowane na podstawie opisu stanowiska i będą zawierać pytania dotyczące wszystkich określonych umiejętności, które określasz.

Czy masz jakieś funkcje anty-cheatingowe lub proktorowe?

Mamy następujące funkcje anty-cheatingowe:

  • Pytania o niezgodne z nich
  • Proctoring IP
  • Proctoring Web
  • Proctoring kamery internetowej
  • Wykrywanie plagiatu
  • Bezpieczna przeglądarka

Przeczytaj więcej o funkcjach Proctoring.

Jak interpretować wyniki testów?

Najważniejsze, o czym należy pamiętać, jest to, że ocena jest narzędziem eliminacyjnym, a nie narzędziem wyboru. Ocena umiejętności jest zoptymalizowana, aby pomóc Ci wyeliminować kandydatów, którzy nie są technicznie zakwalifikowani do roli, nie jest zoptymalizowana, aby pomóc Ci znaleźć najlepszego kandydata do tej roli. Dlatego idealnym sposobem na wykorzystanie oceny jest podjęcie decyzji o wyniku progowym (zwykle 55%, pomagamy Ci porównać) i zaprosić wszystkich kandydatów, którzy wyniki powyżej progu na następne rundy wywiadu.

Do jakiego poziomu doświadczenia mogę użyć tego testu?

Każda ocena Adaface jest dostosowana do opisu stanowiska/ idealnego kandydującego osobowości (nasi eksperci przedmiotu będą podejmować właściwe pytania dotyczące oceny z naszej biblioteki ponad 10000 pytań). Ocenę tę można dostosować do dowolnego poziomu doświadczenia.

Czy każdy kandydat otrzymuje te same pytania?

Tak, znacznie ułatwia porównanie kandydatów. Opcje pytań MCQ i kolejność pytań są losowe. Mamy funkcje anty-cheating/proctoring. W naszym planie korporacyjnym mamy również możliwość tworzenia wielu wersji tej samej oceny z pytaniami o podobnych poziomach trudności.

Jestem kandydatem. Czy mogę spróbować testu ćwiczeniowego?

Nie. Niestety, w tej chwili nie wspieramy testów ćwiczeń. Możesz jednak użyć naszych przykładowych pytań do ćwiczeń.

Jaki jest koszt korzystania z tego testu?

Możesz sprawdzić nasze Plany cenowe.

Czy mogę dostać bezpłatny proces?

Tak, możesz zarejestrować się za darmo i podgląd tego testu.

Właśnie przeniosłem się do płatnego planu. Jak mogę poprosić o ocenę niestandardową?

Oto szybki przewodnik dotyczący jak poprosić o ocenę niestandardową na Adaface.

customers across world
Join 1200+ companies in 75+ countries.
Wypróbuj dziś najbardziej przyjazne narzędzie do oceny umiejętności.
g2 badges
Ready to use the Adaface React Native Online Test?
Ready to use the Adaface React Native Online Test?
Porozmawiaj z nami
logo
40 min tests.
No trick questions.
Accurate shortlisting.
Semestry Prywatność Przewodnik zaufania

🌎 Wybierz swój język

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