Computer Science, asked by Nitesh09, 11 months ago

Explain different kinds of variables in vb.net.

Answers

Answered by Arslankincsem
0

Variables are mainly used to manipulate the storage data of the programs and each variable in VB.Net has a specify type.


These types of variables can determine the size and layout of the variable’s memory, range or storing capacity of the memory and the set of the operations that can applied to the variables.


There are different types of variables in VB.Net such as SByte, Byte, Short, UShort, Integer, UInteger, Long, ULong and Char (Integral types of variables).


Apart from that, people can use single and double as floating variable, True and False value as Boolean variable, and date or decimal as specified variables.

Similar questions