If weight 10 height 3 and velocity 5 what does the follow
If weight = 10, height = 3, and velocity = 5 what does the following evaluate to? weight 4 and velocity >=5
True or False
Solution
if weight <4 and velocity >=5
(F && T) :-F
it gives false
if weight >4 and velocity >=5
(T && T):-T
it gives true
i
