AMA University Answers
Login
Register
AMA OED
Courses
IT
IT-6314
What data type will PHP automa...
What data type will PHP automatically convert the following variable to: $aVariable = "Robert";
string (a text variable)
Correct
Feedbacks
JustMastodon
-
2 years ago
Upvoted this question
Similar IT-6314 questions
Which operator will check if two variables are the same?
What will be the output of the following PHP code ? <?php for($x=0;$x<=10;$x++) { echo"The number is...
What will be the output of the following PHP code ? <?php for($i++;$i==1;$i=2) print"In for loop ";...
What will be the output of the following PHP code ? <?php for($x=-1;$x<10;--$x) { print$x; } ?>
What will be the output of the following PHP code ? <?php $colors=array("red","green","blue","yellow...
What will be the output of the following PHP code ? <?php for(1;$i==1;$i=2) print"In for loop "; pri...