Question:Given:
<?php $checkState=4; for($count=1;$count<10;$count=$checkState+$count){ if($checkState==4){ echo "The value of count is :$count"; break; }else{ echo "The value of checkState is:$checkState"; } } ?>Which of the followings are correct?
A The value of count is :1
B The value of count is :5
C The value of count is :9
D The” The value of chechState is:4” will be printed three times
+ AnswerA
+ Report