'what does this data section initialize, using .quad with another symbol in GAS syntax?

I don't understand what does this code initialize, how will the data look in the memory map?

.section .data 
A:.long 3
  .quad B
  .quad 0
B: .long 4 
   .quad 0
   .quad 0


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source