I urgently need CORRECT ANSWER. if you can’t solve please don’t answer this.
4) Suppose tuple1 (36,96, 88, 74) in PHP, which of the following is incorreet? a) print(tuple1[3]) b) tuple1 [3]-45 c) print(min(tuple1)) d) print(len(tuple1))
Expert Answer
The code is like this
<?php
$tuple1 = array(36,90,85,41);
print(tuple1[3]);
?>
This is an array function in PHP which says that tuple1 var consists of the similar array and the print statement prints the variable with the third index column.
In the third and the fourth option there is a syntax error they will only run when the function is written as follows:
print min($tuple1)
print len($tuple1)
Hence, the correct option is A.