In the following code, we have a list of elements. Select the lines that will print a list of nulls:
println(elements.filterNot { x -> x != null }) // a
println(elements.filterIsInstance<null>()) // b
println(elements.partition { it == null }.first) // c