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?javaenum class Signal { OPEN, CLOSED, SENDING }

🎲 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 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?<br>java<br>enum class Signal { OPEN, CLOSED, SENDING }<br>