write a logical expression to represent the following :
(a)either amount is more than 80 or quantity is less than 5
(b) class is 10 and marks is more than 80
In java
Answers
Answered by
26
(a)if(amount>80||quantity<5)
(b)if(class==10&&marks>80)
nitish8089:
welcome
Answered by
2
Answer:
Sure
Explanation:
a) if(amount>80||quantity<5)
b) if(class=10&&marks>80)
Similar questions