Which of the following is NOT a standard coroutine builder in Kotlin?
runBlocking
async
launch
repeat
What is the difference between any() and all() functions for collections?
any()
all()
any() returns the first matching element, while all() returns a list of all matching elements.
any() checks if at least one element matches a condition, while all() checks if all elements match.
any() and all() are interchangeable and produce the same result.
any() checks if all elements match a condition, while all() checks if at least one element matches.
What is the process of a subclass providing a specific implementation for a method declared in its superclass called?
Abstracting
Encapsulating
Overriding
Overloading
What is the purpose of type-safe builders in Kotlin?
To build type hierarchies dynamically at runtime.
To cast types safely within a given scope.
To enforce type safety at compile time when creating complex structures.
To create generic type aliases for improved code readability.
What is the primary purpose of extension functions in Kotlin?
To add new functionality to existing classes without inheriting from them.
To define static methods within a class.
To create abstract methods that must be implemented by subclasses.
To override existing methods of a class.
How do you replace all occurrences of a substring in a Kotlin String?
replace()
substitute()
replaceAll()
switch()
What annotation must be added to a method in the superclass to allow it to be overridden in a subclass?
@Override
@Overrideable
@Open
@Abstract
What is the purpose of the finally block in a Kotlin try-catch-finally statement?
finally
try-catch-finally
To execute code regardless of whether an exception is thrown.
To specify the type of exception that the catch block can handle.
catch
To define a new custom exception class.
To handle exceptions thrown in the try block.
try
Which Kotlin function is used to combine elements of two collections into pairs?
combine()
merge()
zip()
pair()
In Kotlin, what keyword is used to mark a class as inheritable?
inherit
extends
derivable
open