0
Output
What does the output of y X=5 Y=x+3 Print int(str (y) + 2) Print y Please help Iâm new and know nothing about coding
7 Answers
+ 13
U need to specify the language & I can't see that where is the initialization & declaration of variable y .
//edit your question
+ 10
@CipherFox ,
there is a big difference between Y & y
& Str (y) look like some method to me , which he probably forget to mention
+ 10
well , whats the language first
//he didn't mention any language & also int before values to print
+ 4
x = 5
y = x + 3
print(y + 2)
print(y)
The outputs would be 10 and 8.
Work on the structure of your syntax.
+ 2
@Gaurav. Notice how he wrote "Print". That alone would cause an error. I don't think he's aware that syntax in programming languages is case-sensitive.
+ 1
I guess 82, looks like JavaScript
0
Thanks for your Answers!!