Find out the error(s) in the following code fragment:
Print ("X =" X)
There are two errors in this code fragment:
Variable X is undefined.
X
"X =" and X should be separated by a comma like this print("X =", X)
"X ="
print("X =", X)