P7: Data Analyst Interview Dry-Run Review Questions (6 total) Question 1 - Describe a data project you worked on recently. The most recent project that I worked on was data visualization. I had to select a dataset and create a graphic to represent it. The dataset I chose was Titanic pas...
100 step 7) println(i.toString() + " - ") // My Solution val numbers = Array<Int>(5) { it + 11 } println(numbers.asList()) var mutableList = mutableListOf<String>() for (number in numbers) { mutableList.add(number.toString()) } println(mutableList) // Challange Example for (...