What is Java Ternary Operator(?:)
Definition
The question mark operator (? :) is a conditional operator that selects one of two expressions based on the evaluation result of a condition. It can achieve results similar to an if statement.
Structure
if (Condition) {
result = expres...