Question:Which will you select for the following type identifier function’s output? <?php $item=43; Printf(“The variable \$item is of type array: %d <br/>”, is_array($item)); Printf(“The variable \$item is of type integar: %d <br/>”, is_ integar ($item)); Printf(“The variable \$item is of type numeric: %d <br/>”, is_ numeric ($item)); ?> 

A The variable  $item is of type array:0 The variable  $item is of type integer:1 The variable  $item is of type numeric:1 

B The variable  $item is of type array:0 The variable  $item is of type integer:1 The variable  $item is of type numeric:0 

C The variable  $item is of type array:0 The variable  $item is of type integer:0 The variable  $item is of type numeric:1 

D The variable  $item is of type array:0 The variable  $item is of type integer:0 The variable  $item is of type numeric:0 

+ Answer
+ Report
Total Preview: 1020

Copyright © 2024. Powered by Intellect Software Ltd