- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Nikhitha Chowdary Manne has Published 15 Articles

Nikhitha Chowdary Manne
261 Views
An array is a collection of elements of same data type, and each element in the array is identified by an index value. It is a simplest data structure where each data element can be accessed directly by only using its index number. Arrays in Python Python does not ... Read More

Nikhitha Chowdary Manne
1K+ Views
An array is a collection of elements of homogeneous datatypes stored in contiguous memory locations. Python does not provide support for the built-in arrays. If you need to work with arrays you need to import the "array" module or, use the arrays in numpy library.We can use lists instead of ... Read More

Nikhitha Chowdary Manne
505 Views
After the declaration of an array, the elements of the array until certain index are rotated such that the first elements until the desired index are placed in the last, next to the last element of the array. Let us discuss this with an Input output scenario. Input Output Scenario ... Read More

Nikhitha Chowdary Manne
1K+ Views
The collection of homogenous elements within a single variable and in the contiguous memory location is known as array. The elements in array can be of any datatype but all the elements that are present in the array should be homogeneous, i.e., should belong to the same datatype. The arrays ... Read More

Nikhitha Chowdary Manne
1K+ Views
When a two dimensional array or a 2D array is declared, it is treated like a matrix. So, we know that a matrix consists of rows and columns. The process of sorting the elements that belong to a particular column of a matrix either in ascending order or in descending ... Read More

Nikhitha Chowdary Manne
2K+ Views
In general, there are multiple ways to sort an array. The array can be sorted either in ascending order or in descending order. The array sorted in ascending order will have the smaller elements first and then the larger elements. The array sorted in descending order will have the larger ... Read More

Nikhitha Chowdary Manne
3K+ Views
In Python, there are mainly two searching algorithms that are majorly used. Out of those, the first one is Linear Search and the second one is Binary Search. These two techniques are majorly used in order to search an element from the given array or from the given list also. ... Read More

Nikhitha Chowdary Manne
1K+ Views
In order to remove the first element of the array, the index that must be considered is 0 as the index of the first element in any array is always 0. As like removing the last element from an array, removing the first element from the array can be processed ... Read More

Nikhitha Chowdary Manne
310 Views
Boundary Elements of a Matrix The elements that are not surrounded by any other elements that belong to the same matrix are known as Boundary elements. Using this phenomena, we can build a program. Let us consider an Input output scenario and then construct a program. Input Output Scenario Consider ... Read More

Nikhitha Chowdary Manne
2K+ Views
There are three different ways in order to delete or remove the element. Let us discuss some of those methods and keywords that are used to remove the last element from an array one after another in a row. Using Delete() Method of the Numpy Module This ... Read More