
PowerShell Join Operator
Quiz by Aaron Curtis
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
7 questions
Show answers
- Q1Combine the three items (a, b, c) into a string "abc"-join ("a", "b" ,"c")30s
- Q2Combine the three items (a, b, c) into a string with a comma "," as the delimiter "a,b,c"."a", "b", "c" -join ","30s
- Q3Combine the three items (a, b, c) into a string with the semicolon ";" as the delimiter "a;b;c"."a", "b", "c" -join ";"30s
- Q4Combine the three items (a, b, c) into a string with the dash "-" as the delimiter "a-b-c""a", "b", "c" -join "-"30s
- Q5Combine the three items (a, b, c) into a string with the dot "." as the delimiter "a.b.c""a", "b", "c" -join "."30s
- Q6Combine the three items (a, b, c) into a string with the space " " as the delimiter."a", "b", "c" -join " "30s
- Q7Combine the three items (a, b, c) into a string with the pipe "|" as the delimiter."a", "b", "c" -join "|"30s