<p>Assume you are using one machine with 201 buffer pages tocompute the join of two relations R(a,b) and S(b,c). Relation R isstored in 2000 pages and relation S is stored
What text function would return the street name of the following address?
cell: "1234 Washington; Arlington, VA"
=MID(A1, FIND(" ",A1)+1, FIND(";",A1) - FIND(" ",A1)-1)
=LEFT(A1, FIND(";",A1) - FIND(" ",A1))
=RIGHT(A1,FIND(" ",A1)-FIND(";",A1))
=MID(A1,FIND(";",A1)-1)
<p>Consider the following decision problems:</p><p>- Minimum-Spanning-Tree: Given a weighted graph G = (V;E) and aninteger d, does there exist a<br/>spanning tree of G with weight at most d?</p><p><br/>- Minimum-Spanning-2-Forest: Given