Consider the following expression $modresult - 33 % 11;
What is the value of $modresult in the expression?
Which statement will print the capital attribute of the $kansas object?
Consider the following program code
$Animal - 'Dogs bark';
package Cat;
$Animal = 'Cats purr';
{
package Fish;
$Animal - 'Fish swim';
}
package main;
print $Animal;
What is the result of executing this program code?
Consider the following program code:
$x = 5;
$y = 10;
while(++$x < 10 && ++$y < 15)
{
print ($x $y );
}
print ($x $y );
What is the result of executing this program code?
Currently there are no comments in this discussion, be the first to comment!