InterviewSolution
Saved Bookmarks
| 1. |
Declare a variable and assign the name of India's capital |
|
Answer» Answer: capital = "New Delhi" Explanation: This is in Python Language. capital represents variable name. "New Delhi" is value stored in variable capital as STRING object type. |
|