Computer Science > Computational Thinking And Programming 2 > Functions
Write the output on execution of the following Python code :
def ALTER(Y=25): global X Y += X X += Y print(X, Y, sep="#") X = 5; Y = 15 ALTER(Y) ALTER() print(X, Y, sep="@")
Current Question
Community Stats
Track Your Progress
Sign up to save your practice progress, add favorites, and get personalized insights.

Edvaya Target
Practice Questions & Mock Tests
Improve your problem-solving skills with our extensive collection of practice questions including PYQs, NCERT Textbooks, NCERT Exemplars and Mock Tests. Get instant feedback and detailed solutions to enhance your preparation.
