Computer Science, asked by Swarup1998, 8 months ago

Find the output of the following program:

Integer X, Y, Z
X = 5
Y = 3
X = (X^2 + Y^2)/3
Y = X - 4
Z = (X + Y)/2
PRINT *, 'X =', X, 'Y =', Y, 'Z =', Z
STOP
END​

Answers

Answered by prashadvijay74
1

Answer:

stop is the answer of questions

Answered by Ompravassahoo
0

Answer:

so , th answer is stop

Explanation:

After finishing our previous tutorial on Python variables in this series, you should now have a good grasp of creating and naming Python objects of different types. Let’s do some work with them!

Here’s what you’ll learn in this tutorial: You’ll see how calculations can be performed on objects in Python. By the end of this tutorial, you will be able to create complex expressions by combining objects and operators.

Take the Quiz: Test your knowledge with our interactive “Python Operators and Expressions” quiz. Upon completion you will receive a score so you can track your learning progress over time:

In Python, operators are special symbols that designate that some sort of computation should be performed. The values that an operator acts on are called operands.

Similar questions