Name the operators listed below
i) < ii) ++ iii) && iv) ?
Answers
Answered by
1
Answer:
< means smaller EX: 3 < 5.
++ mean you add 1 to that value EX: 9++
&& mean AND, EX: if(7>10&&7>12) do something(both conditions must be true)
? mean if. EX System.out.print(a<b?"a smaller than b":"a larger than b");
Explanation:
BRAINLIEST!
Similar questions