a और b वेरिएबल का डेटा टाइप क्या होगा?
What will be the data types of variables a and b?
var a = 10
var b = "Manish"
A
Int and int
B
Int and str
C
str and int
D
str and str
Explanation
a = 10
b = "Manish"
इसमें:
-
aको assign किया गया है10→ यह एक integer है -
bको assign किया गया है"Manish"→ यह एक string है
🔍 Data types:
Correct Answer: B) Int and str