Variables Output#

Section Title: Variables Output

  • Find the output of the following code.

  • Please don’t run the code before giving your answer.     

Question-1#

print(type(5))

Solution

<class ‘int’>

Question-2#

print(type(5.5))

Solution

<class ‘float’>

Question-3#

print(type(5.0))

Solution

<class ‘float’>

Question-4#

print(type('5'))

Solution

<class ‘str’>

Question-5#

x = 5
y = 'apple'
print('I have', 20-x, y,'s.')

Solution

I have 15 apple s.

Question-6#

age = 25
print('I am' +'age'+'years old.')

Solution

I amageyears old.

Question-7#

age = 25
print('I am' +str(age)+'years old.')

Solution

I am25years old.

Question-8#

x = 25
print(x+5)
print(x)
print(2*x)

Solution

30
25
50

Question-9#

print('3'+'5')

Solution

35

Question-10#

x, y, z = 4, 2, 7
print(x+z)
print(y*x)

Solution

11
8

Question-11#

x, y = '3', '5'
print(x+y)
print(int(y)+int(x))
print(float(y)+float(x))
print(float(y)+int(x))
print(int(x)*y)
print(int(y)*x)

Solution

35
8
8.0
8.0
555
33333

Question-12#

x, y = '#', '?'
print(x+y)
print(2*x+y)
print(x+y*3+x)

Solution

#?
##?
#???#