What will be the value of $n after the execution of the following code?
$n = 5
$n
=
$n
+ 12 $n=$n-7
Answers
Answer:5
Explanation: In the first line we set n to 5. Then we set n to n + 12 which is 5 +7 which is 12. Then in the last line we set n to n - 7 which is 12 - 7 which is 5
Answer:
_____________________________________
Python int(x, base=10):
The function returns an integer object constructed from a number or string x, or return 0 if no arguments are given. If x is a number, return x.__int__(). For floating point numbers, this truncates towards zero.
If x is not a number or if base is given, then x must be a string, bytes, or bytearray instance representing an integer literal in radix base
The literal can be preceded by + or - (with no space in between) and surrounded by whitespace
A base-n literal consists of the digits 0 to n-1, with a to z (or A to Z) having values 10 to 35. The default base is 10.
The allowed values are 0 and 2-36. Base-2, -8, and -16 literals can be optionally prefixed with 0b/0B, 0o/0O, or 0x/0X, as with integer literals in code.
_____________________________________
Brainlist layak ho to kardena