1.

What is wrong with the following codename:"Freya"class=4print (name+class)​

Answer»

Answer:

First of all this : name:"Freya" should be : name="Freya" . And ALSO string value can't be CONCATENATED with integer . Convert the number 4 into string .

Correct Code :

name="Freya"

CLASS="4"

PRINT (name+class)



Discussion

No Comment Found