Which are valid variable names?
From naming conventions perspective, which variable name would you choose to hold the value of total number of students in a class?
Variable names are case sensitive in Python
Choose all the ways you can represent a String value
A programmer named a variable 'lambda'. Is this possible?
A Cloud Computer is actually in the cloud above
You have declared a variable
a = 10 and want to know the type assigned. You would use which statement to find that
</question>
<question>
<p>A data type assigned to a variable will change when a literal value of a different data type is reassigned to it</p>
<answer correct>Yes</answer>
<answer >No</answer>
<explanation> Yes, for e.g., if age = 10 is reassigned as age = '10 years' then the datatype of 'age' changes from 'int' to 'str'</explanation>
</question>
<question>
<p>You are making a lot of changes to different code cells of your Jupyter notebook and all of sudden you see results which do not make any logical sense. What would you do?</p>
<answer correct>Restart the runtime as you think the many changes that you made are still held in memory and are messing you up</answer>
<answer>Delete code cells and reinsert them</answer>
<explanation>Remember when ever a code cell is run, it will hold all the variables declared in that code block in memory. Even if you remove the variables or delete a code block on your .ipynb file, the variables are still held in memory which are not shown in the code and may be potentially messing you up. Once you restart your runtime, memory will be wiped clean and you start with a clean slate. Deleting a code block and reinserting does not help when you are in this situation</explanation>
</question>
##Exercise