D. E. php $y = 10;

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter16: Searching, Sorting And Vector Type
Section: Chapter Questions
Problem 20PE
icon
Related questions
Question

Please solve the parts, D, E and F

Question:
Check the following pieces of code and then determine whether
each piece of code is correct or wrong?
A.<?php
function addNumbers($a, $b)
{ $r = $a + $b;
return $a + $b;
}
$n1 = 6;
$n2 = 7;
echo addNumbers($n1, $n2);
B.<?php
C.<?php
?>
function addNumbers($a, $b)
{ $r = $a + $b;
return $a + $b;
}
$result = addNumbers(4, 11);
echo $result;
?>
function zz($a)
{ $y = 1;
$r = $y + 6;
echo $r;
}
zz(4);
echo $y;
?>
Transcribed Image Text:Question: Check the following pieces of code and then determine whether each piece of code is correct or wrong? A.<?php function addNumbers($a, $b) { $r = $a + $b; return $a + $b; } $n1 = 6; $n2 = 7; echo addNumbers($n1, $n2); B.<?php C.<?php ?> function addNumbers($a, $b) { $r = $a + $b; return $a + $b; } $result = addNumbers(4, 11); echo $result; ?> function zz($a) { $y = 1; $r = $y + 6; echo $r; } zz(4); echo $y; ?>
D.<?php
function zzNew()
{ $g = 1;
F.
$q = $g + 6;
echo $q;
zzNew();
$g =
= 2;
echo $g;
?>
E. <?php
$y = 10;
function myTest()
{
$GLOBALS['y'] = $GLOBALS['y'] + 2;
}
myTest();
echo $y;
?>
<?php
define("z", 6);
function myTest2()
{ echo z; }
myTest2();
?>
Transcribed Image Text:D.<?php function zzNew() { $g = 1; F. $q = $g + 6; echo $q; zzNew(); $g = = 2; echo $g; ?> E. <?php $y = 10; function myTest() { $GLOBALS['y'] = $GLOBALS['y'] + 2; } myTest(); echo $y; ?> <?php define("z", 6); function myTest2() { echo z; } myTest2(); ?>
Expert Solution
steps

Step by step

Solved in 4 steps

Blurred answer
Knowledge Booster
Mathematical functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr