Search test library by skills or roles
⌘ K

About the test:

DevOps测试是一种基于方案的在线测试,旨在评估候选人与Linux,Git,Python,Docker和DevOps技能的熟练程度。

Covered skills:

  • git基础
  • GIT分支模型
  • Docker图像和网络
  • 外壳脚本
  • Python基本面
  • Python OOP
  • Python编码
  • git工作流程
  • 码头容器和卷
  • Linux命令
  • 文件系统管理
  • 脚本和网络刮擦
  • 数据结构

Try practice test
9 reasons why
9 reasons why

Adaface DevOps Assessment Test is the most accurate way to shortlist DevOps工程师s



Reason #1

Tests for on-the-job skills

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

  • 能够有效使用git进行版本控制
  • 精通Docker容器化和音量管理
  • 擅长于使用Linux命令和外壳脚本
  • 知识渊博的Python基本面和脚本
  • 经验丰富的原则和实践
  • 熟悉GIT工作流程和分支模型
  • 有能力管理Docker图像和网络
  • 在Linux上精通文件系统管理
  • 能够创建用于网络刮擦的Python脚本
  • 熟练于python的面向对象的编程
  • 精通Python的数据结构
  • 有能力与Python编码
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

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

🧐 Question

Medium

ZeroDivisionError and IndexError
Exceptions
Try practice test
What will the following Python code output?
 image

Medium

Session
File Handling
Dictionary
Try practice test
 image
The function high_sess should compute the highest number of events per session of each user in the database by reading a comma-separated value input file of session data. The result should be returned from the function as a dictionary. The first column of each line in the input file is expected to contain the user’s name represented as a string. The second column is expected to contain an integer representing the events in a session. Here is an example input file:
Tony,10
Stark,12
Black,25
Your program should ignore a non-conforming line like this one.
Stark,3
Widow,6
Widow,14
The resulting return value for this file should be the following dictionary: { 'Stark':12, 'Black':25, 'Tony':10, 'Widow':14 }
What should replace the CODE TO FILL line to complete the function?
 image

Medium

Max Code
Arrays
Try practice test
Below are code lines to create a Python function. Ignoring indentation, what lines should be used and in what order for the following function to be complete:
 image

Medium

Recursive Function
Recursion
Dictionary
Lists
Try practice test
Consider the following Python code:
 image
In the above code, recursive_search is a function that takes a dictionary (data) and a target key (target) as arguments. It searches for the target key within the dictionary, which could potentially have nested dictionaries and lists as values, and returns the value associated with the target key. If the target key is not found, it returns None.

nested_dict is a dictionary that contains multiple levels of nested dictionaries and lists. The recursive_search function is then called with nested_dict as the data and 'target_key' as the target.

What will the output be after executing the above code?

Medium

Stacking problem
Stack
Linkedlist
Try practice test
What does the below function ‘fun’ does?
 image
A: Sum of digits of the number passed to fun.
B: Number of digits of the number passed to fun.
C: 0 if the number passed to fun is divisible by 10. 1 otherwise.
D: Sum of all digits number passed to fun except for the last digit.

Medium

Debugging Issues
Environment Variables
Debugging
Try practice test
You are working on a Linux system and have recently installed a new program named myprogram. The executable is located in /opt/myprogram/bin/. You want to be able to run this program from any directory in your shell without specifying the full path.
You executed the following command:
export PATH="/opt/myprogram/bin"
However, when you try to run the program using myprogram, you get the following error message:
-bash: myprogram: command not found

Which of the following commands can fix this issue and allow you to run the program?
A: export PATH=$PATH:/opt/myprogram/bin/
B: export PATH="/opt/myprogram:$PATH"
C: export PATH="/opt/myprogram/bin:$PATH"
D: ln -s /opt/myprogram/bin/myprogram /usr/local/bin/myprogram

Easy

File Structure and Navigation
Files
Basic Commands
Try practice test
Consider the following directory structure:
 image
You start at /home/user and execute the following commands:
 image
What will be the resulting directory structure?
 image

Medium

Fork mellow yellow
Try practice test
How many times will the following code will print "Mellow Yellow"?
 image

Medium

Remote server connection
SSH
Try practice test
Our software engineering intern, Wu is looking to use port 4545 on localhost to connect to a remote server called woot.bananas.com on port 80. Which command would you recommend for this?
 image

Medium

git commit without git add
Try practice test
Suppose a remote repository is cloned in local system and a old file named “modified_file” is modified and now if following command is run, what will "git status" return?
 image
 image

Medium

Merge into live branch
Try practice test
Which of the following commands will merge dev-fixes into the master-live branch?

a. git checkout master-live and git merge dev-fixes
b. git checkout dev-fixes and git merge master-live
c. git merge master-live and git checkout dev-fixes
d. git merge dev-fixes and git checkout master-live

Medium

Docker Multistage Build Analysis
Multistage Builds
Optimization
Try practice test
Consider the following Dockerfile, which utilizes multistage builds. The aim is to build a lightweight, optimized image that just runs the application.
 image
The Dockerfile first defines a base image that includes Node.js and npm, then it creates an intermediate image to install the npm dependencies. Afterwards, it runs the tests in another stage and finally, creates the release image.

Which of the following statements are true?

A: The final image will include the test scripts.
B: If a test fails, the final image will not be created.
C: The node_modules directory in the final image comes from the base image.
D: The final image will only contain the necessary application files and dependencies.
E: If the application's source code changes, only the release stage needs to be rebuilt.

Easy

Docker Networking and Volume Mounting Interplay
Networking
Volume Mounting
Try practice test
You have two docker containers, X and Y. Container X is running a web service listening on port 8080, and container Y is supposed to consume this service. Both containers are created from images that don't have any special network configurations.

Container X has a Dockerfile as follows:
 image
And, you build and run it with the following commands:
 image
Container Y is also running alpine with python installed, and it's supposed to read data from the `/app/data` directory and send a GET request to `http://localhost:8080` every 5 minutes. The Dockerfile for container B is:
 image
And you run it with:
 image
Assuming all the python scripts work perfectly and firewall isn't blocking any connections, you find that container Y can't access the web service of container X via `http://localhost:8080` and also it can't read the data in `/app/data` directory. What could be the potential reason(s)?
A: Y can't access X's web service because they're in different Docker networks.
B: Y can't read the data because the volume is not shared correctly.
C: Both A and B are correct.
D: Both A and B are incorrect.

Medium

Dockerfile Optimization
Dockerfile
Multi-stage builds
Layer Caching
Try practice test
You have been asked to optimize a Dockerfile for a Python application that involves a heavy dependency installation. Here is the Dockerfile you are starting with:
 image
Given that the application's source code changes frequently but the dependencies listed in requirements.txt rarely change, how can you optimize this Dockerfile to take advantage of Docker's layer caching, reducing the build time?
A: Move the `RUN pip install` command to before the `COPY` command.
B: Change `COPY . /app` to `COPY ./app.py /app` and move the `RUN pip install` command to before the `COPY` command.
C: Add `RUN pip cache purge` before `RUN pip install`.
D: Replace the base image with `python:3.8-slim`.
E: Implement multi-stage builds.

Medium

Dockerfile Updates
Cache
Try practice test
Check the following Dockerfile used for a project (STAGE 1):
 image
We created an image from this Dockerfile on Dec 14 2021. A couple of weeks after Dec 14 2021, Ubuntu released new security updates to their repository. After 2 months, we modified the file (STAGE 2):
 image
Couple of weeks later, we further modified the file to add a local file ada.txt to /ada.txt (STAGE 3): (Note that ada.txt exists in /home/adaface and the dockerfile exists in /home/code folders)
 image
Pick correct statements:

A: If we run “docker build .” at STAGE 2, new Ubuntu updates will be fetched because apt-get update will be run again since cache is invalidated for all lines/layers of Dockerfile when a new line is added.
B: If we run “docker build .” at STAGE 2, new Ubuntu updates will not be fetched since cache is invalidated only for last two lines of the updated Dockerfile. Since the first two commands remain the same, cached layers are re-used skipping apt get update.
C: To skip Cache, “docker build -no-cache .” can be used at STAGE 2. This will ensure new Ubuntu updates are picked up.
D: Docker command “docker build .” at STAGE 3 works as expected and adds local file ada.txt to the image.
E: Docker command “docker build .” at STAGE 3 gives an error “no such file or directory” since /home/adaface/ada.txt is not part of the Dockerfile context.

Medium

Efficient Dockerfile
Dockerfile
Try practice test
Review the following Dockerfiles that work on two projects (project and project2):
 image
All Docker files have the same end result:

- ‘project’ is cloned from git. After running few commands, ‘project’ code is removed.
- ‘project2’ is copied from file system and permissions to the folder is changed.
Pick the correct statements:

A: File 1 is the most efficient of all.
B: File 2 is the most efficient of all.
C: File 3 is the most efficient of all.
D: File 4 is the most efficient of all.
E: Merging multiple RUN commands into a single RUN command is efficient for ‘project’ since each RUN command creates a new layer with changed files and folders. Deleting files with RUN only marks these files as deleted but does not reclaim disk space. 
F: Copying ‘project2’ files and changing ownership in two separate commands will result in two layers since Docker duplicates all the files twice.

Medium

Resource Analysis
Process Management
System Performance
Log Analysis
Try practice test
As a senior DevOps engineer, you are tasked with diagnosing performance issues on a Linux server running Ubuntu 20.04. The server hosts several critical applications, but lately, users have been experiencing significant slowness. Initial monitoring shows that CPU and memory utilization are consistently high. To identify the root cause, you check the output of `top` and `ps` commands, which indicate that a particular process is consuming an unusually high amount of resources. However, the process name is generic and does not clearly indicate which application or service it belongs to. You also examine `/var/log/syslog` for any unusual entries but find nothing out of the ordinary. Based on this situation, which of the following steps would most effectively help you identify and resolve the performance issue?
A: Increase the server's physical memory and CPU capacity.
B: Use the `lsof` command to identify the files opened by the suspect process.
C: Reboot the server to reset all processes.
D: Examine the `/etc/hosts` file for any incorrect configurations.
E: Run the `netstat` command to check for abnormal network activity.
F: Check the crontab for any recently added scheduled tasks.

Medium

Streamlined DevOps
Continuous Integration
Scripting
Try practice test
You are in charge of developing a Bash script for setting up a continuous integration pipeline for a web application. The source code is hosted in a Git repository. The script's goals include:

1. Ensuring the local copy of the repository in /var/www/html is updated to the latest version.
2. Creating a .env file with APP_ENV=production in the project root if it doesn't already exist.
3. Running a test suite with ./run_tests.sh and handling any test failures appropriately.
4. Logging the current timestamp and commit hash in deployment_log.txt in the project root if tests pass.

Which of the following script options would most effectively and safely accomplish these tasks?
 image
🧐 Question🔧 Skill

Medium

ZeroDivisionError and IndexError
Exceptions

2 mins

Python
Try practice test

Medium

Session
File Handling
Dictionary

2 mins

Python
Try practice test

Medium

Max Code
Arrays

2 mins

Python
Try practice test

Medium

Recursive Function
Recursion
Dictionary
Lists

3 mins

Python
Try practice test

Medium

Stacking problem
Stack
Linkedlist

4 mins

Python
Try practice test

Medium

Debugging Issues
Environment Variables
Debugging

2 mins

Linux
Try practice test

Easy

File Structure and Navigation
Files
Basic Commands

2 mins

Linux
Try practice test

Medium

Fork mellow yellow

2 mins

Linux
Try practice test

Medium

Remote server connection
SSH

2 mins

Linux
Try practice test

Medium

git commit without git add

3 mins

Git
Try practice test

Medium

Merge into live branch

2 mins

Git
Try practice test

Medium

Docker Multistage Build Analysis
Multistage Builds
Optimization

3 mins

Docker
Try practice test

Easy

Docker Networking and Volume Mounting Interplay
Networking
Volume Mounting

3 mins

Docker
Try practice test

Medium

Dockerfile Optimization
Dockerfile
Multi-stage builds
Layer Caching

2 mins

Docker
Try practice test

Medium

Dockerfile Updates
Cache

2 mins

Docker
Try practice test

Medium

Efficient Dockerfile
Dockerfile

2 mins

Docker
Try practice test

Medium

Resource Analysis
Process Management
System Performance
Log Analysis

3 mins

DevOps
Try practice test

Medium

Streamlined DevOps
Continuous Integration
Scripting

2 mins

DevOps
Try practice test
🧐 Question🔧 Skill💪 Difficulty⌛ Time
ZeroDivisionError and IndexError
Exceptions
Python
Medium2 mins
Try practice test
Session
File Handling
Dictionary
Python
Medium2 mins
Try practice test
Max Code
Arrays
Python
Medium2 mins
Try practice test
Recursive Function
Recursion
Dictionary
Lists
Python
Medium3 mins
Try practice test
Stacking problem
Stack
Linkedlist
Python
Medium4 mins
Try practice test
Debugging Issues
Environment Variables
Debugging
Linux
Medium2 mins
Try practice test
File Structure and Navigation
Files
Basic Commands
Linux
Easy2 mins
Try practice test
Fork mellow yellow
Linux
Medium2 mins
Try practice test
Remote server connection
SSH
Linux
Medium2 mins
Try practice test
git commit without git add
Git
Medium3 mins
Try practice test
Merge into live branch
Git
Medium2 mins
Try practice test
Docker Multistage Build Analysis
Multistage Builds
Optimization
Docker
Medium3 mins
Try practice test
Docker Networking and Volume Mounting Interplay
Networking
Volume Mounting
Docker
Easy3 mins
Try practice test
Dockerfile Optimization
Dockerfile
Multi-stage builds
Layer Caching
Docker
Medium2 mins
Try practice test
Dockerfile Updates
Cache
Docker
Medium2 mins
Try practice test
Efficient Dockerfile
Dockerfile
Docker
Medium2 mins
Try practice test
Resource Analysis
Process Management
System Performance
Log Analysis
DevOps
Medium3 mins
Try practice test
Streamlined DevOps
Continuous Integration
Scripting
DevOps
Medium2 mins
Try practice test
Reason #4

1200+ customers in 75 countries

customers in 75 countries
Brandon

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


Brandon Lee, 人事主管, Love, Bonito

Try practice test
Reason #5

Designed for elimination, not selection

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

查看样本记分卡
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 DevOps Online Test

Why you should use Pre-employment DevOps Test?

The DevOps在线测试 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:

  • 使用git进行版本控制与协作
  • 了解GIT工作流程以进行有效的发展
  • 实施与并行开发的GIT分支模型
  • 使用Docker容器进行应用程序部署
  • 管理Docker量以持续数据存储
  • 构建Docker图像以进行有效的应用程序部署
  • 配置Docker网络以进行范围内通信
  • 执行系统管理的Linux命令
  • 创建用于自动化和任务管理的Shell脚本
  • 管理数据组织的文件系统

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 DevOps Test?

  • git Workforws

    git工作流程是使用git的特定策略或方法,例如集中式,特征分支或gitflow工作流程。衡量测试中的这一技能有助于招聘人员评估候选人对不同GIT工作流程的理解及其选择和实施适当的工作流程以进行有效且可扩展的软件开发的能力。

  • git分支模型

    git分支模型是指在GIT中创建和管理分支的策略和结构,例如功能分支,释放分支或Hotfix分支。测试候选人对GIT分支模型的知识非常重要,因为它证明了他们在组织和维护代码版本,在平行工作流中进行协作以及确保强大的开发工作流程的熟练程度。

  • docker容器和卷容器</h4> </h4> </h4> < P> Docker容器和卷是Docker的重要组成部分,Docker是一个流行的容器化平台。该技能应在测试中测量,因为它评估了候选人对如何创建,配置和管理Docker容器的理解,这使开发人员能够以其依赖关系打包应用程序并确保在不同环境中进行一致的部署。</p> <h4> Docker Images和网络</H4> <p> Docker图像是容器化应用程序及其依赖项的快照,而Docker网络允许容器和其他网络资源之间进行通信。评估候选人对Docker图像和网络的了解很重要,因为它反映了他们设计和优化基于容器的架构,管理网络连接以及与容器相关的问题故障的能力。</p> <h4> Linux命令</h4> </h4> <</h4> P> Linux命令是用于与基于Linux的操作系统交互的指令。在测试中测量了此技能,以评估候选人对基本Linux命令的熟悉,例如文件管理,过程控制,系统监视和用户管理。在Linux命令中的熟练程度对于使用Linux环境工作的DevOps专业人员至关重要。</p> <h4> shell脚本脚本

    shell脚本涉及编写脚本或程序,这些脚本或程序在类似unix的shell中,例如bash,例如bash,例如为了自动化任务,执行系统管理任务并执行命令。测试候选人在外壳脚本上的技能至关重要,因为它证明了他们编写有效可靠的脚本,自动重复任务以及简化系统配置和维护的能力。

  • 文件系统管理

    文件系统管理是指用于组织,监视和控制操作系统中文件的存储和检索的过程和技术。在测试中衡量这项技能有助于评估候选人对文件系统结构,权限,磁盘使用和备份策略的理解,这对于在DevOps环境中管理和保护数据至关重要。

  • Python基础</ H4> <p> Python基本原理包括Python编程语言的核心概念和语法,包括数据类型,变量,操作员,控制结构和功能。该技能应在测试中衡量,因为它为招聘人员提供了对候选人对Python的基础知识的了解,该知识被广泛用于自动化,脚本和基础架构管理。</p> <h4>脚本和网络刮擦</ H4> <p>脚本和网络刮擦涉及编写脚本或程序来自动化任务并从网站中提取数据。测量测试中的这一技能可以评估候选人使用Python或其他脚本语言编写脚本的能力,利用Web刮擦库或工具,并提取,转换和分析各种DevOps用例或数据驱动决策的数据。</p > <h4> python oop

    python oop(面向对象的编程)涉及设计和实现类,对象及其关系以创建模块化和可重复使用的代码。评估候选人在Python OOP方面的熟练程度有助于招聘人员评估他们开发可靠和可维护的代码结构,实施遗传和多态性的能力,并将OOP原则应用于有效的软件开发和代码重复使用。

  • 数据结构

    数据结构是指计算机程序中数据的组织,存储和操纵。测量测试中的这项技能使招聘人员可以评估候选人对列表,词典,词组,阵列,堆栈和队列等基本数据结构的理解,这对于有效的数据处理,算法设计以及在DevOps中解决问题至关重要。</p。</p。</p > <h4> Python编码</H4> <p> Python编码是指Python编程技能的实际应用来解决现实世界中的问题并实施软件解决方案。该技能应在测试中衡量,以评估候选人编写清洁,可维护和有效的Python代码,遵循编码的最佳实践,并证明使用Python的算法,数据操作和系统自动化的能力。

  • 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 DevOps在线测试 to be based on.

    git基础
    git工作流程
    GIT分支模型
    Docker容器
    Docker卷
    Docker图像
    Docker网络
    Linux命令
    外壳脚本
    文件系统管理
    Python基本面
    脚本
    网络刮擦
    Python OOP
    数据结构
    Python编码
Try practice test

What roles can I use the DevOps Test for?

  • DevOps工程师
  • 软件开发人员
  • 系统管理员
  • 云工程师
  • 发布管理器
  • 质量保证工程师
  • 站点可靠性工程师
  • IT运营工程师
  • 基础设施开发人员CI/CD
  • 助理Devops工程师

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

  • 了解Python的脚本开发基础知识
  • 编写用于网络刮擦和数据提取的脚本
  • 在Python中实现面向对象的编程(OOP)
  • 利用数据结构进行有效的数据操纵
  • 使用Python解决编码挑战
  • 在Python中设计可扩展和可维护的代码
  • 在Python中进行自动测试
  • 使用API​​进行Web服务集成
  • 实施持续集成和部署(CI/CD)管道
  • 使用云平台(例如AWS,Azure)进行部署和可扩展性
Singapore government logo

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


85%
减少筛查时间

DevOps Hiring 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 DevOps在线测试?
Ready to use the Adaface DevOps在线测试?
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
✖️