Computer Basic
1. A declaration float a; occupies ______of memory ?

The memory occupied by float a; depends on the system and compiler: On most systems (32-bit and 64-bit): float typically occupies 4 bytes. If using double instead of float: It usually occupies 8 bytes. Since the question specifies float a;, the correct answer is 4 bytes.