Search test library by skills or roles
⌘ K

About the test:

PowerShellオンラインテストでは、シナリオベースのMCQを使用して、PowerShellスクリプトの作成と実行、Windowsベースのシステムの管理、システムタスクの自動化、.NETフレームワークの操作に習熟した候補者を評価します。テストでカバーされている他の重要なトピックには、セキュリティ管理、エラー処理、オブジェクト操作、リモートサーバー管理が含まれます。

Covered skills:

  • Powershellの基本
  • モジュールと関数
  • ファイルとフォルダー管理
  • PowerShellスクリプト
  • 制御フローとエラー処理
  • セキュリティと許可

9 reasons why
9 reasons why

Adaface PowerShellオンラインテスト is the most accurate way to shortlist PowerShell開発者s



Reason #1

Tests for on-the-job skills

The PowerShellオンラインテスト 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:

  • PowerShellを自動化タスクに効果的に使用する機能
  • システム管理タスクを自動化するためにPowerShellスクリプトを作成する能力
  • PowerShellモジュールと機能を作成および使用する機能
  • PowerShellスクリプトでの制御フローとエラー処理を処理する機能
  • PowerShellコマンドを使用してファイルとフォルダーを管理する機能
  • PowerShellのセキュリティと許可の理解
  • 基本的なシステム管理タスクにPowerShellを活用する能力
  • PowerShellスクリプトをトラブルシューティングとデバッグする機能
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以上の質問のライブラリからのわずかなサンプルです。これに関する実際の質問 PowerShellオンラインテスト グーグルできません.

🧐 Question

Medium

Dynamic Function Invocation
Dynamic Expressions
Array Manipulation
Function Invocation
Solve
You're tasked with dynamically invoking functions based on their names stored in an array. Additionally, you're required to filter out functions that have the term "Admin" in their name. Your colleague suggests the following approach:
 image
Assuming no other functions are defined in the session, which of the following will $results contain after executing the script?

Medium

Error Handling with Try-Catch-Finally
Error Handling
Exceptions
Script Flow
Solve
You're analyzing a script designed to interact with a remote API. The script fetches data, processes it, and then ensures that all temporary files are deleted. You come across the following code block:
 image
After a successful data fetch, the script occasionally throws the custom error. When this happens, what will be the output and state of the system?
A: The output will display "Network error
B: The output will display "General error
C: The script will exit without any output due to the custom error, but the temporary file will be deleted.
D: The output will display "General error
E: The script will terminate prematurely, not executing the finally block.

Hard

Execution Policy Bypass
Execution Policy
Security
Script Invocation
Solve
A server you are working on has the PowerShell execution policy set to "Restricted", preventing scripts from running. You need to execute a script named "Deploy.ps1". You recall a technique to bypass the execution policy without changing it permanently. Which of the following methods would allow you to run "Deploy.ps1" without permanently altering the execution policy?
A: Set-ExecutionPolicy Unrestricted -Scope Process; .\Deploy.ps1
B: PowerShell -ExecutionPolicy Bypass -File .\Deploy.ps1
C: Invoke-Command -ScriptBlock { .\Deploy.ps1 }
D: Start-Process PowerShell -ArgumentList "-ExecutionPolicy Unrestricted", "-File .\Deploy.ps1"
E: Import-Module .\Deploy.ps1

Medium

Logging with Transcript
Logging
Transcription
Error Handling
Solve
You're reviewing a script designed to automate server maintenance tasks. One requirement is to log every action and potential error for auditing purposes. The script utilizes Start-Transcript and Stop-Transcript cmdlets to capture the session. Here's a snippet:
 image
After several successful runs, you notice that some logs are missing crucial information regarding errors. Which of the following could be a reason for the missing error details?
A: The -Append parameter is causing overwritten logs.
B: Not all errors are displayed in the console, hence not captured by the transcript.
C: The Stop-Transcript cmdlet needs to be invoked with an -ErrorAction Continue parameter.
D: Transcription only captures standard output, not error streams.
E: The log file path should be specified again in Stop-Transcript.

Medium

Nested Runspaces
Runspaces
Variable Scoping
Concurrency
Solve
You're optimizing a script for performance by leveraging runspaces to execute tasks concurrently. Each runspace is supposed to increment a shared counter object. Here's your setup:
 image
You expect the $global:counter to be 5 after all runspaces complete. However, it's not consistently reaching that value. What's the most probable reason for this behavior?
A: Runspaces can't access global variables.
B: The counter increment operation is not thread-safe, leading to race conditions.
C: The runspace pool size is limiting the number of concurrent operations.
D: The $global:counter initialization should be inside the script block.
E: The runspace pool's Close and Dispose methods are prematurely terminating the runspaces.

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

Dynamic Function Invocation
Dynamic Expressions
Array Manipulation
Function Invocation

2 mins

PowerShell
Solve

Medium

Error Handling with Try-Catch-Finally
Error Handling
Exceptions
Script Flow

2 mins

PowerShell
Solve

Hard

Execution Policy Bypass
Execution Policy
Security
Script Invocation

3 mins

PowerShell
Solve

Medium

Logging with Transcript
Logging
Transcription
Error Handling

2 mins

PowerShell
Solve

Medium

Nested Runspaces
Runspaces
Variable Scoping
Concurrency

3 mins

PowerShell
Solve

Easy

Registration Queue
Logic
Queues

30 mins

Coding
Solve

Medium

Visitors Count
Strings
Logic

30 mins

Coding
Solve
🧐 Question🔧 Skill💪 Difficulty⌛ Time
Dynamic Function Invocation
Dynamic Expressions
Array Manipulation
Function Invocation
PowerShell
Medium2 mins
Solve
Error Handling with Try-Catch-Finally
Error Handling
Exceptions
Script Flow
PowerShell
Medium2 mins
Solve
Execution Policy Bypass
Execution Policy
Security
Script Invocation
PowerShell
Hard3 mins
Solve
Logging with Transcript
Logging
Transcription
Error Handling
PowerShell
Medium2 mins
Solve
Nested Runspaces
Runspaces
Variable Scoping
Concurrency
PowerShell
Medium3 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 PowerShellオンラインテスト 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 PowerShellオンラインテスト 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 PowerShellオンラインテスト

Why you should use PowerShellオンラインテスト?

The PowerShellオンラインテスト 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:

  • 変数、データ型、演算子、コマンド構文など、PowerShellの基本についての確かな理解を示します。
  • 複雑な問題を解決するために、ループ、条件、機能などのPowerShellスクリプト技術を適用します。
  • モジュールと機能を効果的に利用して、コードを管理および再利用します。
  • PowerShellスクリプトに制御フロー構造とエラー処理メカニズムを実装して、信頼できる堅牢な実行を確保します。
  • PowerShellコマンドを使用してファイルとディレクトリの作成、変更、削除など、ファイルおよびフォルダー管理の習熟度を示します。
  • ファイル許可の設定、アクセス制御リスト(ACLS)の管理、認証の処理など、PowerShellのセキュリティと許可に関する知識を示します。
  • コードの読みやすさ、保守性、パフォーマンスの最適化など、PowerShellスクリプトのベストプラクティスを理解し、適用します。
  • オブジェクトの操作やオブジェクトパイプラインの操作など、PowerShellのオブジェクト指向の機能を活用します。
  • リモートシステムを操作し、PowerShellコマンドをリモートで実行する習熟度を示します。
  • PowerShellスクリプトを、REST API、データベース、クラウドプラットフォームなどの他のテクノロジーやツールと統合します。

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 PowerShellオンラインテスト?

  • Powershell Basics

    Powershellの基本は、Powershellスクリプト言語の基本的な知識と理解を指します。 CMDLETS、変数、データ型、パイプラインの使用などのトピックをカバーしています。このスキルは、PowerShellのコア概念を利用する際の個人の習熟度を評価するため、測定することが重要です。 。関数、ループ構造、条件付きステートメント、入出力操作などのトピックに焦点を当てています。このスキルを測定することで、PowerShellを使用して効率的で再利用可能なスクリプトを作成する個人の能力を評価するのに役立ちます。コードブロックと外部ライブラリ。このスキルは、モジュールのインポート/エクスポート、機能の作成と使用、およびパラメーター処理に関する個人の理解を評価します。このスキルを測定すると、モジュラーで効率的なPowerShellソリューションの構築における個人の習熟度を測定するのに役立ちます。エラーと例外を効果的に処理します。このスキルは、if/elseステートメント、トライ/キャッチブロック、cmdletsのエラーなどのトピックをカバーしています。このスキルを測定すると、予期しないシナリオを処理し、PowerShellスクリプトの適切なフロー制御を確保する個人の能力を評価します。 PowerShellコマンドを使用してファイルとディレクトリを管理します。このスキルは、ファイルの作成、削除、コピー、移動、フォルダーのトラバーサルなどのタスクをカバーしています。このスキルを測定することで、PowerShellを使用してファイルとフォルダーの操作を自動化することにおける個人の習熟度を決定するのに役立ちます。ファイル、フォルダー、およびシステム。このスキルは、ユーザー管理、アクセス制御リスト(ACL)、および暗号化に使用されるコマンドと手法に関する個人の知識を評価します。このスキルを測定すると、PowerShellスクリプトとシステム内で安全なプラクティスを実装する個人の能力が評価されます。

  • 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 PowerShellオンラインテスト to be based on.

    PowerShell変数
    PowerShellオペレーター
    PowerShellアレイ
    PowerShell文字列
    PowerShell条件
    PowerShellループ
    PowerShell関数
    PowerShellパラメーター
    PowerShellエラー処理
    PowerShellスクリプトデバッグ
    PowerShellモジュール
    PowerShellスクリプト実行ポリシー
    ファイルを使用して動作するPowerShell
    フォルダーを使用して動作するPowerShell
    PowerShellセキュリティと許可
    PowerShellリモート
    PowerShellパイプライン
    PowerShellオブジェクト
    PowerShell環境変数
    PowerShellスクリプト入力と出力
    PowerShellの正規表現
    PowerShellの日付と時刻
    PowerShell WMIおよびCIM
    PowerShellレジストリ操作
    PowerShell Active Directory Management
    PowerShell SharePoint Management
    PowerShell Exchange Management
    PowerShell DSC(目的の状態構成)
    SSHでリモートするPowerShell
    PowerShell Webスクレイピング
    PowerShell Restful API統合
    PowerShell XML処理
    PowerShell JSON処理
    PowerShellのロギングとレポート
    PowerShell GUI開発
    PowerShell SQL Server Management
    Powershell Azure Management
    PowerShell AWS Management
    PowerShell VMware管理
    PowerShell Hyper-V管理
    PowerShell Team Foundation Server統合
    PowerShell Git統合
    Powershell Docker管理
    PowerShell IIS管理
    PowerShell SharePointオンライン管理
    Powershell Microsoft 365管理
    PowerShell SharePoint Online PowerShell PNP
    Powershell Azure Ad Management
    PowerShellネットワーク管理
    PowerShellプリンター管理
    PowerShellイベントロギング
    PowerShellシステムパフォーマンス監視
    PowerShellユーザーとグループ管理
    PowerShellサービス管理
    PowerShellソフトウェアのインストールと管理
    PowerShellファイルの圧縮と減圧
    パワーシェル暗号化と復号化
    Powershellハッシュ
    PowerShell安全なパスワード管理
    PowerShellリモートデスクトップ管理
    PowerShellバックアップと復元
    PowerShellタスクスケジューリング
    PowerShell Active Directory Federationサービス
    PowerShell証明書管理

What roles can I use the PowerShellオンラインテスト for?

  • PowerShell開発者
  • Windowsシステム管理者
  • Windows Serverエンジニア
  • BIアナリスト - Powershell
  • Microsoft Exchange管理者

How is the PowerShellオンラインテスト 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

  • スクリプトパラメーター化、スクリプトの再利用性、スクリプトモジュール化などの高度なスクリプト手法を実装します。
  • ユーザーアカウント、グループ、組織ユニットなど、アクティブディレクトリを管理するために、PowerShell CMDLETSとScriptingコンストラクトを効果的に使用します。
  • PowerShellの目的の状態構成(DSC)とインフラストラクチャおよび構成管理におけるそのアプリケーションの知識を示します。
  • PowerShellワークフローを理解して利用して、並列および長期にわたるタスクを効率的に実行します。
  • PowerShellを適用して、システムメンテナンス、ログ分析、ソフトウェアの展開などの管理タスクを自動化します。
  • PowerShellスクリプトでXMLおよびJSONデータ形式の操作に習熟を示します。
  • SQL Server、MySQL、Oracleなどのデータベースシステムの管理とクエリにPowerShellを利用します。
  • Azure、AWS、Google Cloudなどのクラウドプラットフォームやサービスを操作するためにPowerShellを適用します。
  • ロギング、レポート、通知など、PowerShellスクリプトに高度なエラー処理メカニズムを実装します。
  • スクリプトの署名、実行ポリシー設定、スクリプト暗号化など、PowerShellセキュリティのベストプラクティスの知識を示します。
  • Hyper-VやVMwareなどの仮想化技術の管理にPowerShellを適用します。

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

Singapore government logo

採用担当者は、パネル面接中に尋ねる専門的な質問を通じて、どの候補者がより良いスコアを持っているかを判断し、スコアが低い候補者と区別できると感じました。彼らです 非常に満足 Adaface のスクリーニングで最終候補者リストに選ばれた候補者の質を重視します。


85%
スクリーニング時間の短縮

PowerShellオンラインテスト よくある質問

複数のスキルを1つのカスタム評価に組み合わせることはできますか?

そのとおり。カスタム評価は、職務内容に基づいて設定され、指定したすべての必須スキルに関する質問が含まれます。

アンチチートまたは監督の機能はありますか?

次のアンチチート機能があります。

  • グーグル不可能な質問
  • IP監督
  • Webの提案
  • ウェブカメラの監督
  • 盗作の検出
  • 安全なブラウザ

[プロクチャリング機能](https://www.adaface.com/proctoring)の詳細をご覧ください。

テストスコアを解釈するにはどうすればよいですか?

留意すべき主なことは、評価が選択ツールではなく排除ツールであることです。スキル評価が最適化され、技術的にその役割の資格がない候補者を排除するのに役立ちます。これは、役割の最良の候補者を見つけるのに役立つために最適化されていません。したがって、評価を使用する理想的な方法は、しきい値スコア(通常は55%、ベンチマークを支援します)を決定し、インタビューの次のラウンドのしきい値を超えてスコアを上回るすべての候補者を招待することです。

このテストを使用できますか?

各ADAFACE評価は、職務記述書/理想的な候補者のペルソナにカスタマイズされます(当社の主題の専門家は、10000以上の質問のライブラリからあなたの評価に適切な質問を選択します)。この評価は、あらゆる経験レベルでカスタマイズできます。

すべての候補者は同じ質問を受け取りますか?

私は候補者です。練習テストを試すことはできますか?

いいえ。残念ながら、現時点では練習テストをサポートしていません。ただし、[サンプルの質問](https://www.adaface.com/questions)を使用するには、練習できます。

このテストを使用するコストはいくらですか?

無料トライアルを受けることはできますか?

私はちょうど有料プランに移りました。カスタム評価をリクエストするにはどうすればよいですか?

customers across world
Join 1200+ companies in 75+ countries.
今日、最も候補者のフレンドリーなスキル評価ツールをお試しください。
g2 badges
Ready to use the Adaface PowerShellオンラインテスト?
Ready to use the Adaface PowerShellオンラインテスト?
私たちとしゃべる
ada
Ada
● Online
Previous
Score: NA
Next
✖️