Guided Paths
Contests
Interview Prep
Practice
Resources
Problem of the day
Login
New update is available. Click here to update.
Back to home
Variables and Data Types
Module
Introduction to Variables and DataTypes
0% completed
Variables
DataTypes
Valid Variable Names I
Valid Variable Names II
Data Types I
Data Types II
Inspecting Data Types
Variables in Memory
Variables in Memory
Scope of Variables
0% completed
Variables Scope
LocalVariable
GlobalVariable
Global Variables I
Global Variables II
Global Variables III
Scope of Variables I
Scope of Variables II
TypeCasting
0% completed
TypeCasting
Implicit Type Conversion I
Implicit Type Conversion II
Implicit Type Conversion III
Explicit Type Conversion I
Explicit Type Conversion II
Explicit Type Conversion III
Explicit Type Conversion IV
ord Function
Report an issue
Basics of Python
Implicit Type Conversion I
What will be the output of the following code?
a = 7 b = 8 c = a * b print(type(c))
Options:
< class 'float' >
< class 'complex' >
< class 'str' >
< class 'int' >
Submit
Change Theme