How can you assign one value to different variables?

10. How can you assign one value to different variables?

  1. a, b, c = 100
  2. a = b = c = 100
  3. a = b = c == 100

Answer: B) a = b = c = 100

Explanation:

a = b = c = 100, this is how you can assign a single value to multiple variables.

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.