Ankita Saini has Published 319 Articles

Swift Program to Check Armstrong Number

Ankita Saini

Ankita Saini

Updated on 20-Oct-2022 08:18:16

923 Views

This tutorial will discuss how to write swift program to check Armstrong number. The sum of nth power of individual digit of a number is equal to the number itself, then such type of number is known as Armstrong number. Suppose we have a number 407 so here n = ... Read More

Swift Program to Display Armstrong Number Between Two Intervals

Ankita Saini

Ankita Saini

Updated on 20-Oct-2022 08:16:41

286 Views

This tutorial will discuss how to write swift program to display Armstrong number between two intervals. The sum of nth power of individual digit of a number is equal to the number itself, then such type of number is known as Armstrong number. Suppose we have a number 407 so ... Read More

Swift Program to Find Geometric Mean of the Numbers

Ankita Saini

Ankita Saini

Updated on 20-Oct-2022 08:14:29

202 Views

This tutorial will discuss how to write swift program to find the geometric mean of the numbers. Geometric mean also known as GM. Geometric mean is defined as the xth root of the product of x numbers. Suppose we have x elements(that are, a1, a2, a3, ....ax) in the given ... Read More

Swift Program to Find Harmonic Mean of the Numbers

Ankita Saini

Ankita Saini

Updated on 20-Oct-2022 08:13:24

199 Views

This tutorial will discuss how to write swift program to find the harmonic mean of the numbers. Harmonic mean also known as HM is defined as the reciprocal of the average of reciprocal. Or we can say that harmonic mean is the reciprocal of the arithmetic mean by their reciprocal. ... Read More

Swift Program to Find Median of an Unsorted Array

Ankita Saini

Ankita Saini

Updated on 20-Oct-2022 08:12:04

762 Views

This tutorial will discuss how to write swift program to find median of an unsorted array. An array is an ordered collection which is used to store same type of data. For example, if any array is of integer type then it will only store integers, you are strictly not ... Read More

Swift Program to Find Mean of an Unsorted Array

Ankita Saini

Ankita Saini

Updated on 20-Oct-2022 08:10:18

165 Views

This tutorial will discuss how to write swift program to find mean of an unsorted array. An array is an ordered collection which is used to store same type of data. For example, if any array is of integer type then it will only store integers, you are strictly not ... Read More

Swift Program to Calculate the sum of Elements in a Given Array

Ankita Saini

Ankita Saini

Updated on 20-Oct-2022 08:08:42

2K+ Views

This tutorial will discuss how to write swift program to calculate the sum of elements in a given array. An array is an ordered collection which is used to store same type of data. For example, if any array is of integer type then it will only store integers, you ... Read More

Swift Program to Remove All the Elements from the Array

Ankita Saini

Ankita Saini

Updated on 20-Oct-2022 08:07:25

562 Views

This tutorial will discuss how to write swift program to get the magnitude of the number. An array is an ordered collection which is used to store same type of data. For example, if any array is of integer type then it will only store integers, you are strictly not ... Read More

Swift Program to Remove an Element from the Set

Ankita Saini

Ankita Saini

Updated on 20-Oct-2022 08:06:00

1K+ Views

This tutorial will discuss how to write swift program to remove an element from the set. Set is a primary collection type in Swift. It is an unordered collection which stores unique values of same data type. You are not allowed to store different type of values in the same ... Read More

Swift Program to Add a New Element in the Set

Ankita Saini

Ankita Saini

Updated on 20-Oct-2022 08:04:46

105 Views

This tutorial will discuss how to write swift program to add a new element in the set. Set is a primary collection type in Swift. It is an unordered collection which stores unique values of same data type. You are not allowed to store different type of values in the ... Read More

Advertisements