In this video, I've tried to explain that what are Arrays in C++ and their working in Hindi/Urdu. And also discussed the Linear Search Algorithm.
Linear search is a very simple search algorithm. In this type of search, a sequential search is made over all items one by one. Every item is checked and if a match is found then that particular item is returned, otherwise the search continues till the end of the data collection.
In upcoming videos, we'll deeply discuss the types of arrays that are
Static Arrays
Dynamic Arrays
In the current video, a simple idea of static arrays is discussed.