50+ Class 12 CS Find output of Python Code Important Questions
Class 12 CS Find output of Python Code Important Questions Class 12 CS Find output of Python Code Important Questions Q1. What will be the output of the following code snippet? a=10b=20c=-5a, b, a = a+c, b-c, b+cprint(a, b, c) Q2. What is the result of the following code in python? S=”ComputerScience”print(S[2]+S[-4]+S[1:-7]) Q3. What possible … Read more