edited by
287 views
1 votes
1 votes

Consider the intermediate code given above:

The number of nodes and edges in the control-flow graph constructed for the above code, respectively are X and Y. The value of X + Y is 

i am getting 8 as answer

edited by

Please log in or register to answer this question.

Related questions

115
views
0 answers
0 votes
Sarahcs asked May 6
115 views
directed acyclic graph(DAG)is a simplified step from the AST. Solve the following expressions by AST and DAG: X=(((a+a))+((a+a)+(a+a)))
131
views
0 answers
0 votes
Ebrahim asked May 5
131 views
Q4. Generate target code for the following source language statements : x = a + b + c * (d-e) 
93
views
0 answers
0 votes
Ebrahim asked May 5
93 views
Q2. Implement the statement a:= -b + c*(d-e) + f * (c*(d-e)) into following Intermediate code representation.  a) Quadrupleb) Triple c) Indirect Triple Solve the above Question like this example
114
views
0 answers
1 votes
Ebrahim asked May 5
114 views
1. Generate intermediate code for the following code segment. a) (x<y) and (y>z) and not z b) if(i%2==0)evensum=evensum+elseoddsum=oddsum+i;