Search test library by skills or roles
⌘ K

About the test:

La prueba en línea de PowerShell utiliza MCQ basados ​​en escenarios para evaluar a los candidatos sobre su competencia en la creación y ejecución de scripts de PowerShell, administrar sistemas basados ​​en Windows, automatizar tareas del sistema y trabajar con .NET Framework. Otros temas importantes que se cubren en la prueba incluyen administración de seguridad, manipulación de errores, manipulación de objetos y administración remota del servidor.

Covered skills:

  • Conceptos básicos de PowerShell
  • Módulos y funciones
  • Administración de archivos y carpetas
  • Scripting de PowerShell
  • Manejo de flujo y error de control
  • Seguridad y permisos

9 reasons why
9 reasons why

Adaface Prueba en línea de PowerShell is the most accurate way to shortlist Desarrollador de PowerShells



Reason #1

Tests for on-the-job skills

The Prueba en línea de 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:

  • Capacidad para usar PowerShell de manera efectiva para las tareas de automatización
  • Capacidad para escribir scripts de PowerShell para automatizar tareas de administración del sistema
  • Capacidad para crear y usar módulos y funciones de PowerShell
  • Capacidad para manejar el flujo de control y el manejo de errores en los scripts de PowerShell
  • Capacidad para administrar archivos y carpetas utilizando comandos de PowerShell
  • Comprensión de la seguridad y los permisos en PowerShell
  • Capacidad para aprovechar PowerShell para tareas básicas de administración del sistema
  • Capacidad para solucionar los guiones de PowerShell de depurar y depurar
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

Estas son solo una pequeña muestra de nuestra biblioteca de más de 10,000 preguntas. Las preguntas reales sobre esto Prueba en línea de PowerShell no se puede obtener.

🧐 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

Con Adaface, pudimos optimizar nuestro proceso de selección inicial en más de un 75 %, liberando un tiempo precioso tanto para los gerentes de contratación como para nuestro equipo de adquisición de talentos.


Brandon Lee, jefe de personas, Love, Bonito

Reason #5

Designed for elimination, not selection

The most important thing while implementing the pre-employment Prueba en línea de 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 Prueba en línea de 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

Ver cuadro de mando de muestra
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 Prueba en línea de PowerShell

Why you should use Prueba en línea de PowerShell?

The Prueba en línea de 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:

  • Demuestre una comprensión sólida de los conceptos básicos de PowerShell, que incluyen variables, tipos de datos, operadores y sintaxis de comandos.
  • Aplicar técnicas de secuencias de comandos PowerShell como bucles, condiciones y funciones para resolver problemas complejos.
  • Utilice módulos y funciones de manera efectiva para administrar y reutilizar el código.
  • Implementar estructuras de flujo de control y mecanismos de manejo de errores en los scripts de PowerShell para garantizar una ejecución confiable y robusta.
  • Demuestre competencia en la gestión de archivos y carpetas, incluida la creación, modificación y eliminación de archivos y directorios utilizando comandos de PowerShell.
  • Exhibe conocimiento de seguridad y permisos en PowerShell, incluida la configuración de los permisos de archivos, la gestión de listas de control de acceso (ACL) y la autenticación de manejo.
  • Comprenda y aplique las mejores prácticas para las secuencias de comandos de PowerShell, incluida la legibilidad de los códigos, la mantenibilidad y la optimización del rendimiento.
  • Utilice las capacidades orientadas a objetos de PowerShell, como manipular objetos y trabajar con tuberías de objetos.
  • Demostrar competencia en el trabajo con sistemas remotos y ejecutar los comandos de PowerShell de forma remota.
  • Integre los scripts de PowerShell con otras tecnologías y herramientas, como API REST, bases de datos y plataformas en la nube.

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 Prueba en línea de PowerShell?

  • PowerShell Conceptos básicos

    Los conceptos básicos de PowerShell se refieren al conocimiento fundamental y la comprensión del lenguaje de secuencias de comandos PowerShell. Cubre temas como cmdlets, variables, tipos de datos y uso de tuberías. Es importante medir esta habilidad, ya que evalúa la competencia de un individuo en la utilización de los conceptos centrales de PowerShell.

  • PowerShell Scripting

    PowerShell Scripting implica escribir scripts usando PowerShell para automatizar tareas y realizar operaciones complejas . Se centra en temas como funciones, estructuras de bucle, declaraciones condicionales y operaciones de entrada/salida. La medición de esta habilidad ayuda a evaluar la capacidad de un individuo para crear scripts eficientes y reutilizables utilizando módulos y funciones de PowerShell.

  • bloques de código y bibliotecas externas. Esta habilidad evalúa la comprensión de un individuo sobre la importación/exportación de módulos, la creación y el uso de funciones, y el manejo de parámetros. La medición de esta habilidad ayuda a medir la competencia de un individuo en la construcción de soluciones de PowerShell modulares y eficientes. </p> <h4> El flujo de control y el manejo de errores

    El manejo del flujo de control y los errores en PowerShell implica la gestión del flujo de ejecución en scripts en scripts y manejo efectivo de errores y excepciones. Esta habilidad cubre temas como las declaraciones IF/Else, los bloques de prueba/captura y los cmdlets de manejo de errores. La medición de esta habilidad evalúa la capacidad de un individuo para manejar escenarios inesperados y garantizar un control de flujo adecuado en los scripts de PowerShell.

  • Gestión de archivos y carpetas

    La gestión de archivos y carpetas en PowerShell se refiere a la capacidad de manipular y administrar archivos y directorios utilizando comandos de PowerShell. Esta habilidad cubre tareas como la creación de archivos, la eliminación, la copia, el movimiento y el recorrido de la carpeta. La medición de esta habilidad ayuda a determinar la competencia de un individuo en la automatización de las operaciones de archivo y carpeta utilizando PowerShell.

  • Seguridad y permisos

    Seguridad y permisos en PowerShell implica la gestión de derechos de acceso, permisos y configuraciones de seguridad para archivos, carpetas y sistemas. Esta habilidad evalúa el conocimiento de un individuo sobre los comandos y técnicas utilizadas para la gestión de usuarios, las listas de control de acceso (ACL) y el cifrado. La medición de esta habilidad evalúa la capacidad de un individuo para implementar prácticas seguras dentro de los scripts y sistemas de 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 Prueba en línea de PowerShell to be based on.

    Variables de PowerShell
    Operadores de PowerShell
    Matrices de PowerShell
    Cuerdas de PowerShell
    Condicionales de PowerShell
    Bucles de PowerShell
    Funciones de PowerShell
    Parámetros de PowerShell
    Manejo de errores de PowerShell
    PowerShell Script Depurging
    Módulos de PowerShell
    Políticas de ejecución de script de PowerShell
    PowerShell trabajando con archivos
    PowerShell trabajando con carpetas
    Seguridad y permisos de PowerShell
    PowerShell a remoto
    Tubería de powershell
    Objetos PowerShell
    Variables de entorno de PowerShell
    Entrada y salida del script de PowerShell
    Expresiones regulares de PowerShell
    Fecha y hora de PowerShell
    PowerShell WMI y CIM
    Manipulación del registro de PowerShell
    PowerShell Active Directory Management
    PowerShell Gestión de SharePoint
    Gestión de intercambio de PowerShell
    PowerShell DSC (configuración de estado deseada)
    PowerShell remotando con SSH
    Raspado web de PowerShell
    Integración de API de PowerShell Restful
    Procesamiento de PowerShell XML
    Procesamiento de PowerShell JSON
    Registro e informes de PowerShell
    Desarrollo de GUI de PowerShell
    PowerShell SQL Server Management
    Gestión de PowerShell Azure
    Gestión de PowerShell AWS
    PowerShell VMware Management
    Gestión de Hyper-V de PowerShell
    Integración del servidor de Foundation de PowerShell Team Foundation
    Integración de git de PowerShell
    Gestión de Docker de PowerShell
    Gestión de PowerShell IIS
    PowerShell SharePoint en línea Gestión
    PowerShell Microsoft 365 Administración
    PowerShell SharePoint Online PowerShell PNP
    Gestión de anuncios de PowerShell Azure
    Administración de la Red PowerShell
    Administración de impresoras de PowerShell
    Registro de eventos de PowerShell
    Monitoreo del rendimiento del sistema PowerShell
    Gestión de usuarios y grupos de PowerShell
    Gestión de servicios de PowerShell
    Instalación y gestión de software de PowerShell
    Compresión y descompresión de archivo de PowerShell
    Encriptación y descifrado de PowerShell
    PowerShell Hashing
    Gestión de contraseña segura de PowerShell
    Administración de escritorio remoto de PowerShell
    Copia de seguridad y restauración de PowerShell
    Programación de tareas de PowerShell
    Servicios de federación de PowerShell Active Directory
    Gestión de certificados de PowerShell

What roles can I use the Prueba en línea de PowerShell for?

  • Desarrollador de PowerShell
  • Administrador del sistema de Windows
  • Ingeniero de servidor de Windows
  • Analista de BI- PowerShell
  • Administrador de Microsoft Exchange

How is the Prueba en línea de 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

  • Implementar técnicas avanzadas de secuencias de comandos, como la parametrización de la secuencia de comandos, la reutilización del script y la modularización del script.
  • Utilice efectivamente los cmdlets de PowerShell y las construcciones de secuencias de comandos para administrar el directorio activo, incluidas las cuentas de los usuarios, los grupos y las unidades organizacionales.
  • Demuestre el conocimiento de la configuración de estado deseada (DSC) de PowerShell y su aplicación en la gestión de infraestructura y configuración.
  • Comprenda y utilice los flujos de trabajo de PowerShell para ejecutar tareas paralelas y de larga duración de manera eficiente.
  • Aplique PowerShell para automatizar tareas administrativas, como mantenimiento del sistema, análisis de registro e implementaciones de software.
  • Demuestre competencia en el trabajo con formatos de datos XML y JSON en Scripting de PowerShell.
  • Utilice PowerShell para administrar y consultar sistemas de bases de datos, como SQL Server, MySQL y Oracle.
  • Aplique PowerShell para trabajar con plataformas y servicios en la nube, como Azure, AWS y Google Cloud.
  • Implemente mecanismos avanzados de manejo de errores en los scripts de PowerShell, incluidos los registros, los informes y las notificaciones.
  • Demostrar conocimiento de las mejores prácticas de seguridad de PowerShell, incluida la firma de script, la configuración de la política de ejecución y el cifrado de script.
  • Aplique PowerShell para administrar tecnologías de virtualización, como Hyper-V y VMware.

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

Singapore government logo

Los gerentes de contratación sintieron que a través de las preguntas técnicas que hicieron durante las entrevistas del panel, pudieron decir qué candidatos tenían mejores puntajes y diferenciarse de aquellos que no obtuvieron tan buenos puntajes. Ellos son altamente satisfecho con la calidad de los candidatos preseleccionados con la selección de Adaface.


85%
Reducción en el tiempo de detección

Prueba en línea de PowerShell Preguntas frecuentes

¿Puedo combinar múltiples habilidades en una evaluación personalizada?

Si, absolutamente. Las evaluaciones personalizadas se configuran en función de la descripción de su trabajo e incluirán preguntas sobre todas las habilidades imprescindibles que especifique.

¿Tiene alguna característica anti-trato o procuración en su lugar?

Tenemos las siguientes características anti-trate en su lugar:

  • Preguntas no postradas
  • Procuración de IP
  • Procedor web
  • Procedores de cámara web
  • Detección de plagio
  • navegador seguro

Lea más sobre las funciones de procuración.

¿Cómo interpreto los puntajes de las pruebas?

Lo principal a tener en cuenta es que una evaluación es una herramienta de eliminación, no una herramienta de selección. Una evaluación de habilidades está optimizada para ayudarlo a eliminar a los candidatos que no están técnicamente calificados para el rol, no está optimizado para ayudarlo a encontrar el mejor candidato para el papel. Por lo tanto, la forma ideal de usar una evaluación es decidir un puntaje umbral (generalmente del 55%, lo ayudamos a comparar) e invitar a todos los candidatos que obtienen un puntaje por encima del umbral para las próximas rondas de la entrevista.

¿Para qué nivel de experiencia puedo usar esta prueba?

Cada evaluación de AdaFace está personalizada para su descripción de trabajo/ persona candidata ideal (nuestros expertos en la materia elegirán las preguntas correctas para su evaluación de nuestra biblioteca de más de 10000 preguntas). Esta evaluación se puede personalizar para cualquier nivel de experiencia.

¿Cada candidato tiene las mismas preguntas?

Sí, te hace mucho más fácil comparar los candidatos. Las opciones para las preguntas de MCQ y el orden de las preguntas son aleatorizados. Tenemos características anti-trato/procuración en su lugar. En nuestro plan empresarial, también tenemos la opción de crear múltiples versiones de la misma evaluación con cuestiones de niveles de dificultad similares.

Soy candidato. ¿Puedo probar una prueba de práctica?

No. Desafortunadamente, no apoyamos las pruebas de práctica en este momento. Sin embargo, puede usar nuestras preguntas de muestra para la práctica.

¿Cuál es el costo de usar esta prueba?

Puede consultar nuestros planes de precios.

¿Puedo obtener una prueba gratuita?

Sí, puede registrarse gratis y previsualice esta prueba.

Me acabo de mudar a un plan pagado. ¿Cómo puedo solicitar una evaluación personalizada?

Aquí hay una guía rápida sobre cómo solicitar una evaluación personalizada en Adaface.

customers across world
Join 1200+ companies in 75+ countries.
Pruebe la herramienta de evaluación de habilidades más amigables para los candidatos hoy en día.
g2 badges
Ready to use the Adaface Prueba en línea de PowerShell?
Ready to use the Adaface Prueba en línea de PowerShell?
habla con nosotros
ada
Ada
● Online
Previous
Score: NA
Next
✖️