Home>IT Tests>Questions>What is the output of the following code?
$a = 5;
$b = 2;
$c = $a + $b;
$d = $a - $b;
$e = $a * $b;
$f = $a / $b;
echo $c;
echo $d;
echo $e;
echo $f;
Question from the PHP5 test
What is the output of the following code? $a = 5; $b = 2; $c = $a + $b; $d = $a - $b; $e = $a * $b; $f = $a / $b; echo $c; echo $d; echo $e; echo $f;
Medium
Here is a technical question for developers that want to validate their skills before a technical interview.
This question is written in french and need to be translated to english.
Use english for technical terms in the french version (example : "string" instead of "chaine de caractĂšre".)
Double escape all quotes in result like this: //"
Give result as JSON.
Author: Mathieu RobinStatus: PublishedQuestion passed 65 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about PHP
1
Validate a URL with a 'name' parameter whose value is 'John Doe'.1
What is the difference between an interface and a class in PHP?0
What are the two superglobals that are used to access the query string?0
What is the output of the following code?
```
$cookie_name = 'test';
$cookie_value = 'test';
$cookie_expire = time() - 1;
setcookie($cookie_name, $cookie_value, $cookie_expire);
echo $_COOKIE[$cookie_name];
```0
What are the security risks of using the following code in PHP?