Learn English – Are “nil” and “null” interchangeable

differencesword-usage

Are nil and null interchangeable? For example,

My bank a/c has a nil balance.

My bank a/c has a null balance.

Best Answer

NULL is used in computing most often (always?) to signify "not a value." This is different than zero: in a bank database, a zero value means no money, while a NULL value means there has been no value assigned to the balance.

This is a specialized usage, but increasingly common as more people learn to program.