Search test library by skills or roles
⌘ K

React本地在线测试(React Native + JavaScript)

About the test:

React Native Test使用基于方案的MCQ问题来评估候选人构建交互式,媒体富含媒体的本机应用程序的能力,并使用Google/ App Stores发布它们。这些问题评估核心反应本地概念(组件,州和道具),州管理基本面,访问本地特征以及适当使用静止API。该测试还具有MCQ和编码问题,以评估动手JavaScript编程技能。

Covered skills:

  • 核心反应天然(组件;状态;道具)
  • 处理屏幕布局
  • 渲染可滚动和自定义列表
  • 在屏幕之间导航
  • 应用内身份验证
  • 调试本机应用程序
  • 向苹果出版并玩商店
  • 功能组件和钩子
  • 样式组件
  • 组件中的国家管理
  • 异步API
  • 响应式设计
  • 持久性和会话存储

9 reasons why
9 reasons why

Adaface React本地在线测试(React Native + JavaScript) is the most accurate way to shortlist 反应本地开发人员s



Reason #1

Tests for on-the-job skills

The React本地在线测试(React Native + JavaScript) 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:

  • 精通反应本机组件,状态和道具
  • 具有功能组件和钩子的经验
  • 有效处理屏幕布局的能力
  • 熟悉样式组件
  • 渲染可滚动和自定义列表的能力
  • 组件中的国家管理能力
  • 屏幕之间的导航知识
  • 理解异步API
  • 精通应用内身份验证
  • 创建响应式设计的能力
  • 调试本机应用程序的技能
  • 了解持久性和会话存储
  • 向苹果出版和玩商店的知识
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
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

这些只是我们库中有10,000多个问题的一个小样本。关于此的实际问题 反应本机在线测试 将是不可行的.

🧐 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

Medium

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

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

Medium

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
Queues

30 mins

Coding
Solve

Medium

Visitors Count
Strings
Logic

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
Medium2 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
Queues
Coding
Easy30 minsSolve
Visitors Count
Strings
Logic
Coding
Medium30 minsSolve
Reason #4

1200+ customers in 75 countries

customers in 75 countries
Brandon

借助 Adaface,我们能够将初步筛选流程优化高达 75% 以上,为招聘经理和我们的人才招聘团队节省了宝贵的时间!


Brandon Lee, 人事主管, Love, Bonito

Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment 反应本机在线测试 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 反应本机在线测试 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

查看样本记分卡
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 React本地在线测试(React Native + JavaScript)

Why you should use React本地在线测试(React Native + JavaScript)?

The 反应本机在线测试 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:

  • 理解核心反应的本地概念,例如组件,状态和道具。
  • 熟练功能组件和钩子。
  • 有效处理屏幕布局的能力。
  • 具有样式组件的样式式组件的经验。
  • 在React Native中了解可滚动和自定义列表的知识。
  • 对本地组件中的国家管理对国家管理的有深刻了解。
  • 在React Native中熟悉屏幕之间的导航。
  • React天然中有异步API的经验。
  • 熟练在React Native中实施应用内身份验证。
  • 在React Native中创建响应式设计的能力。

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 React本地在线测试(React Native + JavaScript)?

  • 核心反应天然

    核心反应涉及理解反应天然的基本构件,例如组件,状态和道具。必须在测试中衡量这项技能,以确保候选人在React Native Development方面具有很强的基础。

  • 功能组件和挂钩

    功能组件和钩子允许开发人员写更多React Native中的简洁和可重复使用的代码。在测试中包括此技能有助于评估候选人利用这些现代反应功能以获得更好的代码组织和性能的能力。

  • 处理屏幕布局

    处理屏幕布局对于创建直觉至关重要和用户友好的移动应用程序。在测试中测量了这项技能,以评估候选人对创建响应式布局的理解并在React Native中处理不同的屏幕大小。

  • 样式组件

    样式的组件使开发人员能够写CSS -JS用于样式的反应本机组件。评估这项技能有助于确定候选人在React Antive应用程序中使用样式组件的熟练程度。

  • </p> <h4>渲染可滚动和自定义列表

    渲染可滚动,自定义列表是一种常见的列表移动应用程序中的需求。在测试中衡量此技能,可确保候选人可以有效地渲染和管理React Native中的数据列表,以获得最佳性能和用户体验。

  • 屏幕之间的导航

    在屏幕之间导航是移动应用程序之间的重要组成部分发展。评估了此技能以评估候选人对使用React导航等库中的React Native实施导航的理解,从而可以在不同的屏幕之间进行无缝过渡。

  • 异步APIS </h4> <ps

    异步API在用于处理网络请求,数据获取等的移动应用程序开发。在测试中包括此技能有助于衡量候选人在使用Promises或异步/等待语法等概念的React Antial中使用异步操作的知识。

  • 内应用验证

    内应用程序内应用身份验证是评估候选人对在React Antive应用程序中实现安全用户身份验证的熟悉的重要技能。它可以衡量他们对身份验证流,代币管理的理解,并与诸如OAuth或Firebase身份验证之类的身份验证服务集成。

  • 响应式设计

    响应式设计对于创建适合不同不同的移动应用程序至关重要屏幕尺寸和方向。评估此技能可确保候选人可以构建反应的本机应用程序,从而在各种设备上提供一致且最佳的用户体验。

  • 调试对本机应用程序

    调试技能对于识别和解决问题至关重要在React本地应用中。衡量此技能有助于评估候选人在利用React本地调试工具,故障排除常见错误以及确保其应用程序的平稳功能方面的熟练程度。

  • 持久性和会话存储

    持久性和会话存储涉及在React Native应用程序中保存数据以提供无缝的用户体验。评估这项技能有助于确定候选人使用诸如Asyncstorage或SQLite之类的技术实施数据持久性的能力,以进行安全有效的数据存储和检索。

  • 发布给Apple和Play商店

    发布给Apple的商店</h4> <p> Play商店是将React Native应用程序带给用户的最后一步。该技能评估了候选人对应用程序提交过程的理解,包括应用程序签名,存储指南和配置必要的构建设置,以成功地在两个平台上发布应用程序。

  • 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 反应本机在线测试 to be based on.

    反应天然成分
    状态
    道具
    功能组件
    钩子
    屏幕布局
    样式组件
    可滚动列表
    自定义列表
    国家管理
    导航
    异步API
    应用内身份验证
    响应式设计
    调试
    持久性
    会话存储
    出版
    苹果商店
    应用商店
    核心反应天然
    处理例外
    错误处理
    组件生命周期
    JSON解析
    数据绑定
    表单验证
    事件处理
    道具验证
    道具钻探
    高阶组件
    redux
    Redux传奇
    mobx
    反应导航
    反应导航V5
    反应导航V6
    lantlist
    SectionList
    VirtualizedList
    异步
    Netinfo
    反应本地调试器
    性能优化
    本土化
    推送通知
    应用部署
    应用签名
    错误监视
    单位测试
    集成测试
    端到端测试
    代码签名
    持续集成
    连续部署
    反应天然CLI
    博览会CLI

What roles can I use the React本地在线测试(React Native + JavaScript) for?

  • 反应本地开发人员
  • 反应本地移动开发人员
  • 反应本机iOS开发人员
  • 高级软件开发人员(REECT本地)
  • 反应本地工程师
  • Android开发人员(React Native)
  • 反应天然铅
  • 高级移动开发人员(React Native)

How is the React本地在线测试(React Native + JavaScript) 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

  • 擅长调试本机应用程序。
  • 在React Native中了解持久性和会话存储。
  • 熟练发布本机应用程序对苹果公司和玩商店的熟练程度。
  • React Native的处理异常和错误方面的专业知识。
  • 能够在React Native Projects中集成第三方库和软件包的能力。
  • 在React Native中实施推送通知的经验。
  • 熟悉在React Native中实现动画和过渡。
  • React Native中离线和缓存策略的知识。
  • 能够优化React本地应用程序中的性能。

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

Singapore government logo

招聘经理认为,通过小组面试中提出的技术问题,他们能够判断哪些候选人得分更高,并与得分较差的候选人区分开来。他们是 非常满意 通过 Adaface 筛选入围的候选人的质量。


85%
减少筛查时间

React本地在线测试(React Native + JavaScript) 常见问题解答

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.

我可以将多个技能结合在一起,为一个自定义评估吗?

是的,一点没错。自定义评估是根据您的职位描述进行的,并将包括有关您指定的所有必备技能的问题。

您是否有任何反交换或策略功能?

我们具有以下反交易功能:

  • 不可解决的问题
  • IP策略
  • Web Protoring
  • 网络摄像头Proctoring
  • 窃检测
  • 安全浏览器

阅读有关[Proctoring功能](https://www.adaface.com/proctoring)的更多信息。

如何解释考试成绩?

要记住的主要问题是评估是消除工具,而不是选择工具。优化了技能评估,以帮助您消除在技术上没有资格担任该角色的候选人,它没有进行优化以帮助您找到该角色的最佳候选人。因此,使用评估的理想方法是确定阈值分数(通常为55%,我们为您提供基准测试),并邀请所有在下一轮面试中得分高于门槛的候选人。

我可以使用该测试的经验水平?

每个ADAFACE评估都是为您的职位描述/理想候选角色定制的(我们的主题专家将从我们的10000多个问题的图书馆中选择正确的问题)。可以为任何经验级别定制此评估。

每个候选人都会得到同样的问题吗?

是的,这使您比较候选人变得容易得多。 MCQ问题的选项和问题顺序是随机的。我们有[抗欺骗/策略](https://www.adaface.com/proctoring)功能。在我们的企业计划中,我们还可以选择使用类似难度级别的问题创建多个版本的相同评估。

我是候选人。我可以尝试练习测试吗?

不,不幸的是,我们目前不支持实践测试。但是,您可以使用我们的[示例问题](https://www.adaface.com/questions)进行练习。

使用此测试的成本是多少?

您可以查看我们的[定价计划](https://www.adaface.com/pricing/)。

我可以免费试用吗?

我刚刚搬到了一个付费计划。我如何要求自定义评估?

customers across world
Join 1200+ companies in 75+ countries.
立即尝试最候选的友好技能评估工具。
g2 badges
Ready to use the Adaface 反应本机在线测试?
Ready to use the Adaface 反应本机在线测试?
logo
40 min tests.
No trick questions.
Accurate shortlisting.
术语 隐私 信任指南

🌎选择您的语言

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