Computer Science, asked by rkalonicekavya, 9 months ago

Assign a value to a variable with suitable data type
i.m=22/7
ii.k=0.00004545
iii.g=true
iv.'4'

Answers

Answered by rapsangbahduh
0

Answer:

iv.4

Explanation:

..........

.

..

.

.

Answered by Anonymous
0

Answer:

hi..i am answering according to python....

Explanation:

>>> type(22/7)

<class 'float'>

>>> type(0.00004545)

<class 'float'>

>>> type(True)

<class 'bool'>

>>> type("true")

<class 'str'>

>>> type("4")

<class 'str'>

#hope it helps you

please mark brainliest

Similar questions