edited by
2,919 views

2 Answers

Best answer
2 votes
2 votes
--x+j==x>n>=m

6.5 +(-1.0) ==6.5 > 1.0 >= 2.0

5.5 == 1 > = 2.0

3.5 == 0

false so 0 is ans
selected by
0 votes
0 votes
$--x+j==x>n>=m$

 

Priority: $increment > arithmetic > inequality > equality$

Associativity is left to right for the inequality operators.

$((6.5-1.0)==((6.5>1.0)>=2.0))$

$=> 5.5==(1>=2.0)$

$=> 5.5==0$

$=>0$
Answer:

Related questions

2 votes
2 votes
1 answer
2
go_editor asked Jul 30, 2016
2,057 views
Level order Traversal of a rooted Tree can be done by starting from root and performing:Breadth First SearchDepth First SearchRoot SearchDeep Search