placeholder image to represent content

PowerShell Join Operator

Quiz by Aaron Curtis

Our brand new solo games combine with your quiz, on the same screen

Correct quiz answers unlock more play!

New Quizalize solo game modes
7 questions
Show answers
  • Q1
    Combine the three items (a, b, c) into a string "abc"
    -join ("a", "b" ,"c")
    30s
  • Q2
    Combine the three items (a, b, c) into a string with a comma "," as the delimiter "a,b,c".
    "a", "b", "c" -join ","
    30s
  • Q3
    Combine the three items (a, b, c) into a string with the semicolon ";" as the delimiter "a;b;c".
    "a", "b", "c" -join ";"
    30s
  • Q4
    Combine the three items (a, b, c) into a string with the dash "-" as the delimiter "a-b-c"
    "a", "b", "c" -join "-"
    30s
  • Q5
    Combine the three items (a, b, c) into a string with the dot "." as the delimiter "a.b.c"
    "a", "b", "c" -join "."
    30s
  • Q6
    Combine the three items (a, b, c) into a string with the space " " as the delimiter.
    "a", "b", "c" -join " "
    30s
  • Q7
    Combine the three items (a, b, c) into a string with the pipe "|" as the delimiter.
    "a", "b", "c" -join "|"
    30s

Teachers give this quiz to your class