Name of the variable is hello. Its length is the numeric constant 13. 12 + 1 for the linefeed. Stored in helloLen variable.
What is variable?In a computer programme, information is stored in variables so that it may be accessed and changed. They also give us a means to give data a name that is descriptive, making it easier for us and the reader to understand our programmes.
It can be useful to conceive of variables as data storage units. They exist only to label and keep data in memory. Your software can then make use of this data.
.data
hello2: db 'Hello World! G',10
helloLen2: equ $-hello2
and in main
int 80h;
mov edx,helloLen2
Use the below option to generate a listing file, the hex values will display the length, look for the mov,edx,length_Var instruction line on the right hand side (RHS).
nasm -f elf myfile.asm -l myfile.lst
Learn more about variable
https://brainly.com/question/13437928
#SPJ1