1,491 views

Please log in or register to answer this question.

Related questions

1 votes
1 votes
2 answers
1
techbrk3 asked Nov 11, 2017
1,403 views
Consider the following code segment.x = u – t;y = x * v;x = y + w;y = t – z;y = x * y;
3 votes
3 votes
1 answer
2
0 votes
0 votes
2 answers
3
bts1jimin asked Jan 12, 2019
543 views
Answer is 6,6Can anybody explain how?
1 votes
1 votes
1 answer
4
Xylene asked Aug 29, 2017
368 views
In 3 address code format can LHS be repeated ?For eg if we have expression a + b*c then t1 = a t2 = b*c t1 = t1 + t2 or t3 = t1 + t2 which one is correct?