Search test library by skills or roles
⌘ K

About the test:

PowerShell Online-testen bruker scenariobaserte MCQ-er for å evaluere kandidater om sin dyktighet i å lage og kjøre PowerShell-skript, administrere Windows-baserte systemer, automatisere systemoppgaver og jobbe med .NET Framework. Andre viktige emner som dekkes i testen inkluderer sikkerhetsstyring, feilhåndtering, objektmanipulering og ekstern serveradministrasjon.

Covered skills:

  • Basics PowerShell
  • Moduler og funksjoner
  • Fil- og mappeadministrasjon
  • PowerShell Scripting
  • Kontrollstrøm og feilhåndtering
  • Sikkerhet og tillatelser

9 reasons why
9 reasons why

Adaface PowerShell Test is the most accurate way to shortlist PowerShell Developers



Reason #1

Tests for on-the-job skills

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

The test screens for the following skills that hiring managers look for in candidates:

  • Evne til å bruke PowerShell effektivt til automatiseringsoppgaver
  • Evne til å skrive PowerShell -skript for å automatisere systemadministrasjonsoppgaver
  • Evne til å lage og bruke PowerShell -moduler og funksjoner
  • Evne til å håndtere kontrollflyt og feilhåndtering i PowerShell -skript
  • Evne til å administrere filer og mapper ved hjelp av PowerShell -kommandoer
  • Forståelse av sikkerhet og tillatelser i PowerShell
  • Evne til å utnytte PowerShell for grunnleggende systemadministrasjonsoppgaver
  • Evne til å feilsøke og feilsøke PowerShell -skript
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

Dette er bare en liten prøve fra biblioteket vårt med 10.000+ spørsmål. De faktiske spørsmålene om dette PowerShell Online Test vil være ikke-googlable.

🧐 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

Med Adaface var vi i stand til å optimalisere den første screeningsprosessen vår med oppover 75 %, og frigjorde dyrebar tid for både ansettelsesledere og vårt talentanskaffelsesteam!


Brandon Lee, Leder for mennesker, Love, Bonito

Reason #5

Designed for elimination, not selection

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

Science behind Adaface tests
Reason #6

1 click candidate invites

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

Vis eksempler på scorecard
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 Assessment Test

Why you should use Pre-employment PowerShell Online Test?

The PowerShell Online Test 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:

  • Demonstrer en solid forståelse av grunnleggende PowerShell, inkludert variabler, datatyper, operatører og kommandosyntax.
  • Bruk PowerShell Scripting -teknikker som løkker, forhold og funksjoner for å løse komplekse problemer.
  • Bruk moduler og funksjoner effektivt for å administrere og gjenbruke kode.
  • Implementere kontrollstrømningsstrukturer og feilhåndteringsmekanismer i PowerShell -skript for å sikre pålitelig og robust utførelse.
  • Demonstrer ferdigheter i fil- og mappestyring, inkludert opprette, endre og slette filer og kataloger ved hjelp av PowerShell -kommandoer.
  • Utvise kunnskap om sikkerhet og tillatelser i PowerShell, inkludert innstilling av filtillatelser, administrasjon av tilgangskontrolllister (ACL -er) og håndtering av autentisering.
  • Forstå og bruk beste praksis for PowerShell Scripting, inkludert kodelesbarhet, vedlikeholdbarhet og ytelsesoptimalisering.
  • Bruk PowerShells objektorienterte evner, for eksempel å manipulere objekter og jobbe med objektrørledninger.
  • Demonstrere ferdigheter i å jobbe med eksterne systemer og utføre PowerShell -kommandoer eksternt.
  • Integrer PowerShell -skript med andre teknologier og verktøy, for eksempel REST API -er, databaser og skyplattformer.

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

  • Basics PowerShell

    PowerShell Basics refererer til grunnleggende kunnskap og forståelse av PowerShell Scripting -språket. Den dekker emner som cmdlets, variabler, datatyper og bruk av rørledninger. Denne ferdigheten er viktig å måle, da den vurderer individets ferdigheter i å bruke kjernekonseptene PowerShell.

  • PowerShell Scripting

    PowerShell Scripting innebærer å skrive skript ved hjelp av PowerShell for å automatisere oppgaver og utføre komplekse operasjoner . Den fokuserer på emner som funksjoner, sløyfestrukturer, betingede utsagn og inngangs-/utgangsoperasjoner. Måling av denne ferdigheten hjelper deg med å evaluere individets evne til å lage effektive og gjenbrukbare skript ved hjelp Kodeblokker og eksterne biblioteker. Denne ferdigheten evaluerer individets forståelse av modulimport/eksport, funksjonsskaping og bruk og parameterhåndtering. Måling av denne ferdigheten hjelper til og effektivt håndtere feil og unntak. Denne ferdigheten dekker emner som om/annet utsagn, prøv/fange blokker og feilhåndtering av cmdlets. Måling av denne ferdigheten vurderer individets evne til å håndtere uventede scenarier og sikre riktig flytkontroll i PowerShell -skript.

  • Fil og mappeadministrasjon

    Fil- og mappeadministrasjon i PowerShell refererer til muligheten til å manipulere og administrere filer og kataloger ved hjelp av PowerShell -kommandoer. Denne ferdigheten dekker oppgaver som filoppretting, sletting, kopiering, bevegelse og mapper gjennomgang. Måling av denne ferdigheten hjelper til med å bestemme individets ferdigheter i å automatisere fil- og mappeoperasjoner ved hjelp av PowerShell.

  • Sikkerhet og tillatelser

    Sikkerhet og tillatelser i PowerShell innebærer å håndtere tilgangsrettigheter, tillatelser og sikkerhetsinnstillinger for Filer, mapper og systemer. Denne ferdigheten evaluerer individets kunnskap om kommandoer og teknikker som brukes til brukerstyring, tilgangskontrolllister (ACL -er) og kryptering. Måling av denne ferdigheten vurderer individets evne til å implementere sikker praksis innen PowerShell -skript og systemer.

  • 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 Online Test to be based on.

    PowerShell -variabler
    PowerShell -operatører
    PowerShell -matriser
    PowerShell -strenger
    PowerShell Conditionals
    PowerShell Loops
    PowerShell fungerer
    PowerShell -parametere
    PowerShell feilhåndtering
    PowerShell Script Debugging
    PowerShell -moduler
    PowerShell Script Execution Policies
    PowerShell jobber med filer
    Powershell jobber med mapper
    PowerShell Security and Permissions
    PowerShell Remoting
    PowerShell Pipeline
    PowerShell -objekter
    PowerShell miljøvariabler
    PowerShell Script Input and Output
    PowerShell regelmessige uttrykk
    PowerShell Dato og tid
    PowerShell WMI og CIM
    PowerShell Registry Manipulation
    PowerShell Active Directory Management
    PowerShell SharePoint Management
    PowerShell Exchange Management
    PowerShell DSC (ønsket tilstandskonfigurasjon)
    PowerShell Remoting med SSH
    PowerShell Web Scraping
    PowerShell RESTful API -integrasjon
    PowerShell XML -behandling
    PowerShell JSON -behandling
    PowerShell -logging og rapportering
    PowerShell GUI -utvikling
    PowerShell SQL Server Management
    PowerShell Azure Management
    PowerShell AWS Management
    PowerShell VMware Management
    PowerShell Hyper-V-ledelse
    PowerShell Team Foundation Server Integration
    PowerShell Git -integrasjon
    PowerShell Docker Management
    PowerShell IIS Management
    PowerShell SharePoint Online Management
    PowerShell Microsoft 365 Management
    PowerShell SharePoint Online PowerShell PNP
    PowerShell Azure Ad Management
    PowerShell Network Administration
    PowerShell Printer Management
    PowerShell Event Logging
    PowerShell System Performance Monitoring
    PowerShell -bruker- og gruppestyring
    PowerShell Service Management
    PowerShell Software Installation and Management
    PowerShell -filkomprimering og dekompresjon
    PowerShell -kryptering og dekryptering
    PowerShell Hashing
    PowerShell Secure Password Management
    PowerShell Remote Desktop Administration
    PowerShell Backup og Restore
    PowerShell Task Scheduling
    PowerShell Active Directory Federation Services
    PowerShell Certificate Management

What roles can I use the PowerShell Online Test for?

  • PowerShell Developer
  • Windows System Administrator
  • Windows Server Engineer
  • BI-analytiker- PowerShell
  • Microsoft Exchange Administrator

How is the PowerShell Online 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

  • Implementere avanserte skripteteknikker, for eksempel skriptparameterisering, gjenbrukbarhet av skript og skriptmodularisering.
  • Bruk effektivt PowerShell CMDlets og skriptkonstruksjoner for å administrere Active Directory, inkludert brukerkontoer, grupper og organisasjonsenheter.
  • Demonstrere kunnskap om PowerShell ønsket tilstandskonfigurasjon (DSC) og dens anvendelse i infrastruktur og konfigurasjonsadministrasjon.
  • Forstå og bruke PowerShell-arbeidsflyter for å kjøre parallelle og langvarige oppgaver effektivt.
  • Bruk PowerShell for å automatisere administrative oppgaver, for eksempel systemvedlikehold, logganalyse og programvareutplasseringer.
  • Demonstrere ferdigheter i å jobbe med XML- og JSON -dataformater i PowerShell Scripting.
  • Bruk PowerShell til å administrere og spørre databasesystemer, for eksempel SQL Server, MySQL og Oracle.
  • Bruk PowerShell for å jobbe med skyplattformer og tjenester, for eksempel Azure, AWS og Google Cloud.
  • Implementere avanserte feilhåndteringsmekanismer i PowerShell -skript, inkludert logging, rapportering og varsler.
  • Demonstrere kunnskap om beste praksis for beste praksis, inkludert skriptsignering, utførelsespolitiske innstillinger og skriptkryptering.
  • Bruk PowerShell for å håndtere virtualiseringsteknologier, for eksempel Hyper-V og VMware.

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

Singapore government logo

Ansettelseslederne mente at de gjennom de tekniske spørsmålene de stilte under panelintervjuene, var i stand til å fortelle hvilke kandidater som scoret bedre, og differensierte med de som ikke skåret like godt. De er svært fornøyd med kvaliteten på kandidatene som er på listen med Adaface-screeningen.


85%
Reduksjon i screeningstid

PowerShell Hiring Test Vanlige spørsmål

Kan jeg kombinere flere ferdigheter til en tilpasset vurdering?

Ja absolutt. Tilpassede vurderinger er satt opp basert på stillingsbeskrivelsen din, og vil inneholde spørsmål om alle må-ha ferdigheter du spesifiserer.

Har du noen anti-juksende eller proktoreringsfunksjoner på plass?

Vi har følgende anti-juksede funksjoner på plass:

  • Ikke-googlable spørsmål
  • IP Proctoring
  • Nettproctoring
  • Webcam Proctoring
  • Deteksjon av plagiering
  • Sikker nettleser

Les mer om Proctoring -funksjonene.

Hvordan tolker jeg testresultater?

Den viktigste tingen å huske på er at en vurdering er et eliminasjonsverktøy, ikke et seleksjonsverktøy. En ferdighetsvurdering er optimalisert for å hjelpe deg med å eliminere kandidater som ikke er teknisk kvalifisert for rollen, det er ikke optimalisert for å hjelpe deg med å finne den beste kandidaten for rollen. Så den ideelle måten å bruke en vurdering på er å bestemme en terskelpoeng (vanligvis 55%, vi hjelper deg med å benchmark) og invitere alle kandidater som scorer over terskelen for de neste rundene med intervjuet.

Hvilken opplevelsesnivå kan jeg bruke denne testen til?

Hver ADAFACE -vurdering er tilpasset din stillingsbeskrivelse/ ideell kandidatperson (våre fageksperter vil velge de riktige spørsmålene for din vurdering fra vårt bibliotek med 10000+ spørsmål). Denne vurderingen kan tilpasses for ethvert opplevelsesnivå.

Får hver kandidat de samme spørsmålene?

Ja, det gjør det mye lettere for deg å sammenligne kandidater. Alternativer for MCQ -spørsmål og rekkefølgen på spørsmål er randomisert. Vi har anti-juksing/proctoring funksjoner på plass. I vår bedriftsplan har vi også muligheten til å lage flere versjoner av den samme vurderingen med spørsmål med lignende vanskelighetsnivåer.

Jeg er en kandidat. Kan jeg prøve en praksisprøve?

Nei. Dessverre støtter vi ikke praksisprøver for øyeblikket. Du kan imidlertid bruke eksemplet spørsmål for praksis.

Hva koster ved å bruke denne testen?

Du kan sjekke ut prisplanene våre.

Kan jeg få en gratis prøveperiode?

Ja, du kan registrere deg gratis og forhåndsvise denne testen.

Jeg flyttet nettopp til en betalt plan. Hvordan kan jeg be om en tilpasset vurdering?

Her er en rask guide om Hvordan be om en tilpasset vurdering på adaface.

customers across world
Join 1200+ companies in 75+ countries.
Prøv det mest kandidatvennlige ferdighetsvurderingsverktøyet i dag.
g2 badges
Ready to use the Adaface PowerShell Online Test?
Ready to use the Adaface PowerShell Online Test?
ada
Ada
● Online
Previous
Score: NA
Next
✖️