1,643 views
0 votes
0 votes

How to solve Questions of DAG like :- https://gateoverflow.in/2068/gate2014-3-34

My Solution:- (Please Point out what i am doing wrong)

and please also do tell the proper way to do such question

Please log in or register to answer this question.

Related questions

2 votes
2 votes
1 answer
1
6 votes
6 votes
0 answers
2
srestha asked Jan 4, 2018
1,147 views
Consider C program given belowmain() { a=a+b; c=a*c; d=c-d; a=c/d; printf("%d",a); }What will the minimum number of nodes and edge present in the DAG representation of th...
1 votes
1 votes
2 answers
3
techbrk3 asked Nov 11, 2017
1,409 views
Consider the following code segment.x = u – t;y = x * v;x = y + w;y = t – z;y = x * y;
0 votes
0 votes
0 answers
4
Ankita87077 asked Oct 28, 2021
574 views
How Directed acyclic graph would be constructed for this instruction?b[j] = a ;