No this is not like that.. I know basic concept of .data, .bss,..etc. If any data is initialized with any value then it considered as .data not .bss.
In my case
1) suppose array size is 256
uint8_t variable[256];
I got below memory usage in MXUXpresso
In Image Info -> Memory Usage
Program Flash - 13.47 KB
SRAM - 4.52 KB
In console window after compilation
text data bss dec hex filename
9311 64 4560 13935 366f test.axf
2) Changed array size to 1024
uint8_t variable[1024];
I got below memory usage in MXUXpresso
In Image Info -> Memory Usage
Program Flash - 14.23 KB (increased by 768)
SRAM - 5.27 KB
In console window after compilation
text data bss dec hex filename
9315 64 5328 14707 3973 test.axf
After compare above result i thought there may have some error in memory usage calculation in Image Info or something I'm missing not sure..
Result in console window is ok.
Why image Info show wrong memory usage??