1. Q1: What is the value of beta after the following code is executed?🔗 alpha = 3 beta = 7 gamma = -3.5 delta = '5' epsilon = 'numbers' beta //= alpha 🔗 🔗
2. Q2: Is the following code valid?🔗 alpha = 3 beta = 7 gamma = -3.5 delta = '5' epsilon = 'numbers' gamma += beta Yes🔗 No🔗 🔗
3. Q3: What is the value of zeta after the following code is executed?🔗 alpha = 3 beta = 7 gamma = -3.5 delta = '5' epsilon = 'numbers' zeta = epsilon or alpha 🔗 🔗
4. Q4: What is the value of eta after the following code is executed?🔗 alpha = 3 beta = 7 gamma = -3.5 delta = '5' epsilon = 'numbers' eta = alpha*delta 🔗 🔗
5. Q5: What is the value of theta after the following code is executed?🔗 alpha = 3 beta = 7 gamma = -3.5 delta = '5' epsilon = 'numbers' theta = gamma < beta + delta True🔗 False🔗 This code is invalid🔗 🔗