You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Q1. You would like to print each score on its own line with its cardinal position. Without using var or val, which method allows iteration with both the value and its position?
funmain() {
val highScores =listOf(4000, 2000, 10200, 12000, 9030)
}
Q6. What is the entry point for a Kotlin application?
fun static main(){}
fun main(){}
fun Main(){}
public static void main(){}
Q7. You are writing a console app in Kotlin that processes test entered by the user. If the user enters an empty string, the program exits. Which kind of loop would work best for this app? Keep in mind that the loop is entered at least once
Q8. You pass an integer to a function expecting type Any. It works without issue. Why is a primitive integer able to work with a function that expects an object?
While the code runs, it does not produce correct results
The integer is always a class
The compiler runs an implicit .toClass() method on the integer
The integer is autoboxed to a Kotlin Int class
Q9. You have started a long-running coroutine whose job you have assigned to a variable named task. If the need arose, how could you abort the coroutine?
Q11. You have written a snippet of code to display the results of the roll of a six-sided die. When the die displays from 3 to 6 inclusive, you want to display a special message. Using a Kotlin range, what code should you add?
when (die) {
1->println("die is 1")
2->println("die is 2")
___-> printlin("die is between 3 and 6")
else-> printlin("die is unknown")
}
Q12. The function typeChecker receives a parameter obj of type Any. Based upon the type of obj, it prints different messages for Int, String, Double, and Float types; if not any of the mentioned types, it prints "unknown type". What operator allows you to determine the type of an object?
Q14. You have a function simple() that is called frequently in your code. You place the inline prefix on the function. What effect does it have on the code?
inlinefunsimple(x:Int): Int{
return x * x
}
funmain() {
for(count in1..1000) {
simple(count)
}
}
The code will give a stack overflow error
The compiler warns of insignificant performance impact
Q17. Which line of code shows how to display a nullable string's length and shows 0 instead of null?
println(b!!.length ?: 0)
println(b?.length ?: 0)
println(b?.length ?? 0)
println(b == null? 0: b.length)
Q18. In the file main.kt, you are filtering a list of integers and want to use an already existing function, removeBadValues. What is the proper way to invoke the function from filter in the line below?
Q21. Your code need to try casting an object. If the cast is not possible, you do not want an exception generated, instead you want null to be assigned. Which operator can safely cast a value?
Q30. The code snippet below translates a database user to a model user. Because their names are both User, you must use their fully qualified names, which is cumbersome. You do not have access to either of the imported classes' source code. How can you shorten the type names?
Q31. Your function is passed by a parameter obj of type Any. Which code snippet shows a way to retrieve the original type of obj, including package information?
Q35. Which snippet correctly shows setting the variable max to whichever variable holds the greatest value, a or b, using idiomatic Kotlin?
val max3 = a.max(b) (Extension Function is One of the idiomatic Solutions in Kotlin)
val max = a > b ? a : b
val max = if (a > b) a else b
if (a > b) max = a else max = b
Q36. You have an enum class Signal that represents the state of a network connection. You want to print the position number of the SENDING enum. Which line of code does that?
Q38. You have a when expression for all of the subclasses of the class Attribute. To satisfy the when, you must include an else clause. Unfortunately, whenever a new subclass is added, it returns unknown. You would prefer to remove the else clause so the compiler generates an error for unknown subtypes. What is one simple thing you can do to achieve this?
Because name is a class parameter, not a property-it is unresolved main().
In order to create an instance of a class, you need the keyword new
The reference to name needs to be scoped to the class, so it should be this.name
Classes cannot be immutable. You need to change var to val
Q46. The code below shows a typical way to show both index and value in many languages, including Kotlin. Which line of code shows a way to get both index and value more idiomatically?
var ndx =0;
for (value in1..5){
println("$ndx - $value")
ndx++
}
Q50. In this code snippet, why does the compiler not allow the value of y to change?
for(y in1..100) y+=2
y must be declared with var to be mutable
y is an implicitly immutable value
y can change only in a while loop
In order to change y, it must be declared outside of the loop
Q51. You have created a data class, Point, that holds two properties, x and y, representing a point on a grid. You want to use the hash symbol for subtraction on the Point class, but the code as shown will not compile. How can you fix it?
data classPoint(valx:Int, valy:Int)
operatorfun Point.plus(other:Point) =Point(x + other.x, y + other.y)
operatorfun Point.hash(other:Point) =Point(x - other.x, y - other.y)
funmain() {
val point1 =Point(10, 20)
val point2 =Point(20, 30)
println(point1 + point2)
println(point1 # point2)
}
You cannot; the hash symbol is not a valid operator.
You should replace the word hash with octothorpe, the actual name for the symbol.
You should use minus instead of hash, then type alias the minus symbol.
You need to replace operator with the word infix.
Q52. This code snippet compiles without error, but never prints the results when executed. What could be wrong?
val result = generateSequence(1) { it +1 }.toList()
println(result)
The sequence lacks a terminal operation.
The sequence is infinite and lacks an intermediate operation to make it finite.
The expression should begin with generateSequence(0).
Q54. Both y and z are immutable references pointing to fixed-size collections of the same four integers. Are there any differences?
val y = arrayOf(10, 20, 30, 40)
val z =listOf(10, 20, 30, 40)
You can modify the contents of the elements in y but not z.
There are not any differences. y and z are a type alias of the same type.
You add more elements to z since it is a list.
You can modify the contents of the elements in z but not y.
Q55. The code snippet compile and runs without issue, but does not wait for the coroutine to show the "there" message. Which line of code will cause the code to wait for the coroutine to finish before exiting?
Q56. You would like to group a list of students by last name and get the total number of groups. Which line of code accomplishes this, assuming you have a list of the Student data class?
data classStudent(valfirstName:String, vallastName:String)
Q57. Class BB inherits from class AA. BB uses a different method to calculate the price. As shown, the code does not compile. What changes are needed to resolve the compilation error?
openclassAA() {
var price:Int=0
get() = field +10
}
classBB() : AA() {
var price:Int=0
get() = field +20
}
You need to add a lateinit modifier to AA.price.
You simply need to add an override modifier to BB.price.
You need to add an open modifier to AA.price and an override modifier to BB.price.
You need to add a public modifier to AA.price and a protected modifier to BB.price.
Q58. What is the output of this code?
val quote ="The eagle has landed."println("The length of the quote is $quote.length")
The length of the quote is The eagle has landed.
A compilation error is displayed.
The length of the quote is 21
The length of the quote is The eagle has landed..length
Q59. You have an unordered list of high scores. Which is the simple method to sort the highScores in descending order?
funmain() {
val highScores =listOf(4000, 2000, 10200, 12000, 9030)
.sortedByDescending()
.descending()
.sortedDescending()
.sort("DESC")
Q60. Your class has a property name that gets assigned later. You do not want it to be a nullable type. Using a delegate, how should you declare it?
lateinit var name: String // lateinit is modifier not delegate
var name: String by lazy
var name: String by Delegates.notNull()
var name: String? = null
Q61. You want to know each time a class property is updated. If the new value is not within range, you want to stop the update. Which code snippet shows a built-in delegated property that can accomplish this?
Delegates.vetoable()
Delegates.cancellable()
Delegates.observer()
Delegates.watcher()
Q62. Which line of code shows how to call a Fibonacci function, bypass the first three elements, grab the next six, and sort the elements in descending order?
val sorted = fibonacci().skip(3).take(6).sortedDescending().toList()
val sorted = fibonacci().skip(3).take(6).sortedByDescending().toList()
val sorted = fibonacci().skip(3).limit(6).sortedByDescending().toList()
val sorted = fibonacci().drop(3).take(6).sortedDescending().toList()
Q69. For the Product class you are designing, you would like the price to be readable by anyone, but changeable only from within the class. Which property declaration implements your design?
Q76. You have written a function, sort(), that should accept only collections that implement the Comparable interface. How can you restrict the function?
funsort(list:List<T>): List <T> {
return list.sorted()
}
Add <T -> Comparable<T>> between the fun keyword and the function name
Add Comparable<T> between the fun keyword and the function name
Add <T : Comparable<T>> between the fun keyword and the function name
Add <T where Comparable<T>> between the fun keyword and the function name
Q84. You have enum class Signal that represent state of network connection. You want to iterate over each the member of the enum. Which line of code shows how to do that `?