Report Bug
Qus : NumPy arrays can be
QusNumPy ऐरे में क्या क्या हो सकता है

A. Indexed
B. Sliced
C. Iterated
D. All of the mentioned above


Solution
D. All of the mentioned above



Explanation
The index value of an array starts at zero, and each element is referred by the index value of the previous member. Slicing - Slicing is used when we need to extract a portion of an array from another. This is accomplished by the use of slicing. We can indicate which part of the array should be sliced by using the [start: end] syntax in conjunction with the array name to give the start and end index values. Iterating - The first axis of a multidimensional array is used to iterate through the arrays,



Report Bug