- 10
I want answers of module 6 quiz???
12 Respuestas
0
Which question from model 6 quiz
0
what is the answer to the last question
0
name
echo
0
Answer this Question In Function topic module 6 Quiz
What output results from the following code?
function func($arg) {
$result = 0;
for($i=0; $i<$arg; $i++) {
$result = $result + $i;
}
return $result;
}
echo func(5);
0
Last question
0
The function is called?
- 1
any one help me plz
? kiya hai waha ans dena hai
class
Singer {
public $name = "Ann";
public function display() {
echo
$...?
->name;
}
}
$s =
n....?
Singer();
$s
-_
display();
- 1
<!DOCTYPE html>
<html>
<body>
<?php
function greet($name) {
return "Welcome ".$name
;
}
echo greet('Robert');
?>
</body>
</html>
- 2
does anyone can help me fill this blank ?
Fill in the blanks to output "Welcome Robert".
function greet($name) {
return "Welcome ".
$
;
}
greet('Robert');
- 2
function greet($name) {
return "Welcome ".
$
;
}
greet('Robert');
- 2
function greet($name) {
return "Welcome ".$name;
}
echo greet('Robert');
- 4
Simply asking for answers won't really help you learn though.