Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

What is the difference between numeric and associative array in loop with example?

For Loop with Numeric Array:-
Numeric Array uses in For Loop for Declaration and Initialization as numeric index values are store and access.
ex:-

For Loop with Associative Array:-
The associative array used in For Loop with strings as an index. Associative array stores element values associated with key or index ([]= this is index or key) values.
ex:-

Foreach Loop with Numeric array:-
Foreach Loop works only on arrays. It is used as each index, key or value pair in an array.
ex:-

Foreach Loop with Associative array:-
ex:-

While Loop with Numeric Array:-