Q82. Which of the following is a valid variable name in Python? variablel Ivariable variable-name variable name
Q83. What should you do when installing Python to run it from the command line easily? Uncheck 'Add Python to PATH' Choose a different IDE Check 'Add Python to PATH' Install only the IDE
Q84. Which of the following steps is NOT part of the basic programming process? Write Code Compile/Interpret Execute Ignore Errors
Q85. How do you take decimal number input from the user? int(input()) str(intput()) float(input()) input(float)