
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Ankita Saini has Published 319 Articles

Ankita Saini
1K+ Views
In this article, we will learn how to write a swift program to fill an array with a specific element. An array is used to store elements of same data type in an order whereas a set is used to store distinct elements of same data type without any definite ... Read More

Ankita Saini
2K+ Views
In this article, we will learn how to write a swift program to find the prime numbers from the array. Prime numbers are those numbers that are only divisible by 1 and itself. Or we can say prime number have only two factors that are 1 and the number itself. ... Read More

Ankita Saini
1K+ Views
In this article, we will learn how to write a swift program to remove all ‘nil’ elements from the array. Till now we all know that an array can store elements of a single data type. But Swift array can also hold elements of multiple data types. To store ... Read More

Ankita Saini
2K+ Views
In this article, we will learn how to write a swift program to find even numbers from the array. Even number are those number which are completely divisible by 2. For example, 2, 6, 50, 20, etc. Here we use the following methods to find the even numbers from ... Read More

Ankita Saini
449 Views
In this article, we will learn how to write a swift program to fetch elements from an array based on an index. Using array syntax An array is used to store elements of same data type in an order whereas a set is used to store distinct elements of same ... Read More

Ankita Saini
2K+ Views
In this article, we will learn how to write a swift program to convert set of string to array of string. An array is used to store elements of same data type in an order whereas a set is used to store distinct elements of same data type without any ... Read More

Ankita Saini
1K+ Views
In this article, we will learn how to write a swift program to append an element into an array. An array is used to store elements of same data type in an order whereas a set is used to store distinct elements of same data type without any definite order. ... Read More

Ankita Saini
357 Views
In this article, we will learn how to write a swift program to subtract two matrices using multi-dimensional arrays. A matrix is a mathematical structure in which the elements are placed in rows and columns format. For example, the first element is present at a00 location, the second at a01, ... Read More

Ankita Saini
1K+ Views
In this article, we will learn how to write a swift program to search an element in an Array. Here we use the following methods to search elements from the given array: To search Using == operator Using contains() method Using the in function Method 1: Using ... Read More

Ankita Saini
9K+ Views
In this article, we will learn how to write a swift program to remove duplicate elements from an array. As we know that an array can store multiple elements of the same type. It is not necessary that all the elements are unique they can be duplicated. For example, arr ... Read More