Vidyalelo
Computer Science · Q266

Kotlin Programming MCQ for Competitive Exams, Interviews, and Certifications

Engineering and GATE · Computer Science · question 266

Q266

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? enum class Signal OPEN, CLOSED, SENDING

A.
println(Signal.SENDING.position())
B.
println(Signal.SENDING.hashCode())
C.
println(Signal.SENDING)
D.
println(Signal.SENDING.ordinal)
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board