rewrite the following using ternary operator
if(sales>100000)
incentives=20000;
else
incentives=10000
Answers
Answered by
14
incentives=(sales>100000)? 20000:10000;
--Hope this will help you
--Hope this will help you
Answered by
6
Answer: incentives =(sales>100000)?20000:10000;
Explanation:
Similar questions
Social Sciences,
8 months ago
Hindi,
8 months ago
Computer Science,
8 months ago
Chemistry,
1 year ago
Math,
1 year ago