C++ arrays related interview questions

What is an array? - An array is a collection of variables of the same type that are referred to through a common name......
Define pointer and array. Explain the difference between them - A pointer is a variable that holds a memory address. This address is the location of another object (typically, a variable) in memory....
What is Dynamic memory management for array? - Using the new and delete operators, we can create arrays at runtime by dynamic memory allocation.....