You have two arrays, a and b. Which line combines a and b as a list containing the contents of both?kotlinval a = arrayOf(1, 2, 3)val b = arrayOf(100, 200, 3000)

🎲 Try a Random Question  |  Total Questions in Quiz: 83  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Kotlin Quiz — practice the complete quiz, review flashcards, or try a random question.

Kotlin MCQs For LinkedIn Skill Assessments.


You have two arrays, a and b. Which line combines a and b as a list containing the contents of both?<br>kotlin<br>val a = arrayOf(1, 2, 3)<br>val b = arrayOf(100, 200, 3000)<br>