What will the code below be if \[code\]value\[/code\] is \[code\]2\[/code\] and \[code\]counter\[/code\] is \[code\]11\[/code\]? What would \[code\]$rating\[/code\] be?\[code\]$rating = (@round($rs[value] / $rs[counter],1)) * 10; \[/code\]The complete code is below.\[code\]function getRating(){ $sql= "select * from vote"; $result=@mysql_query($sql); $rs=@mysql_fetch_array($result); $rating = (@round($rs[value] / $rs[counter],1)) * 10; echo $rating;}\[/code\]