Learn practical skills, build real-world projects, and advance your career
!pip install jovian --upgrade --quiet
import jovian

Question 1: What are mnemonic variable names?why is it a good practice to use them?

Variable is a memory location used to store values.A good variable name helps reduce complexity and the need of comments.These variable names reflects the intent of the programmer regarding what type of value will be stored in each variable.These wisely chosen variable names are called mnemonic variable mames . The word mnemonic means "memory aid". We choose mnemonic variable names to help us remember why we created the variable in the first place.

Question 2: The cost of 2 radio sets is 1475.What is the cost of 35 such radio sets?

#storing values 
cost_of_radio_set=1475/2
no_of_radio_sets=35

#calculations
total_cost=cost_of_radio_set*no_of_radio_sets

#printing the final value
print("Total cost of each toy is ", total_cost)
Total cost of each toy is 25812.5

Question 3: Maria bought 96 toys priced equally for \12960.Theamountof12960. The amount of \\1015 is still left with her.Find the cost of each toy and the amount she had.