Project 5: Do While Array

Do-While Loop with Arrays:

This loop executes a block of code at least once, then continues to loop as long as a condition remains true. It’s particularly useful for processing arrays where you need to guarantee at least one iteration.

Project 4: Array in for loop (Information of Students)

Arrays: Imagine an array as a list that holds multiple items. Each item has an index (like a position number) for easy access.

for Loop: A for loop is a programming construct that allows you to repeat a block of code a specific number of times.