Ankita Saini has Published 319 Articles

Swift Program to Display All Prime Numbers from 1 to N

Ankita Saini

Ankita Saini

Updated on 05-Aug-2022 08:34:45

4K+ Views

This tutorial will discuss how to write a Swift program to display all prime numbers from 1 to N. Prime numbers are those numbers that are greater than 1 and has exactly two factors that is 1 and the number itself. For example, 2 is the prime number because it ... Read More

Swift Program to Check if two of three boolean variables are true

Ankita Saini

Ankita Saini

Updated on 05-Aug-2022 08:28:16

356 Views

This tutorial will discuss how to write a Swift program to check if two of three boolean variables are true. Given three boolean values now we have to check if two of the boolean variables are true or not. Boolean variables are those variables that either contain true or false. ... Read More

Swift Program to Display Fibonacci Series

Ankita Saini

Ankita Saini

Updated on 05-Aug-2022 08:24:24

4K+ Views

Fibonacci sequence is a sequence of numbers in which every number is the sum of the preceding two numbers and the starting number of this sequence are 0 and 1. So the general Fibonacci series is − 0, 1, 1, 2, 3, 5, 8, 13, 21, ...... Formula Following is ... Read More

Swift Program to Count Number of Digits in an Integer

Ankita Saini

Ankita Saini

Updated on 05-Aug-2022 08:08:16

2K+ Views

This tutorial will discuss how to write a Swift program to count the number of digits in an integer. Below is a demonstration of the same − Suppose we enter the following input − Number = 3454634 Following is the desired output − Total count is 7 We ... Read More

Swift Program to Reverse a Number

Ankita Saini

Ankita Saini

Updated on 05-Aug-2022 07:53:46

2K+ Views

This tutorial will discuss how to write a Swift program to reverse a number. Reversing a number is a process in which the position of the digits of a number is interchanged to reverse their order. Below is a demonstration of the same − Suppose we enter the following input ... Read More

Swift Program To Perform nCr (rcombinations)

Ankita Saini

Ankita Saini

Updated on 05-Aug-2022 07:50:52

188 Views

This tutorial will discuss how to write a Swift program to perform nCr(r-combination). nCr refers to r- combination. It is used to calculate the possible arrangements where the order of the selection does not matter. Or we can say that nCr is used to select r items from the set ... Read More

Swift Program to Find the Largest Among Three Numbers

Ankita Saini

Ankita Saini

Updated on 05-Aug-2022 07:47:08

1K+ Views

This tutorial will discuss how to write a Swift program to find the largest among three numbers. Given three numbers now we have to find the largest among the given three numbers. So we will compare all three numbers with each other to find the largest number. Below is a ... Read More

Swift Program to Find Factorial of a number

Ankita Saini

Ankita Saini

Updated on 05-Aug-2022 07:38:43

3K+ Views

This tutorial will discuss how to write a Swift program to find factorial of a number. A Factorial of a non-negative number is calculated by multiplying the number with every whole number till 1 for example, 6! = 6 x 5 x 4 x 3 x 2 x 1 = ... Read More

Swift Program to Calculate Simple Interest

Ankita Saini

Ankita Saini

Updated on 04-Aug-2022 08:10:43

747 Views

This tutorial will discuss how to write a swift program to calculate simple interest. Simple interest is the most commonly used method to find the interest on the money for a given time period. In this method, the interest is always applied to the original principal amount with same the ... Read More

Swift Program to Find the Area of a Parallelogram

Ankita Saini

Ankita Saini

Updated on 02-Aug-2022 14:55:14

506 Views

This tutorial will discuss how to write a swift program to find the area of a parallelogram.A Parallelogram is a quadrilateral that is created using parallel lines.Where the opposite sides are parallel and equal and the opposite angles of the parallelograms are equal. It is of three types - rectangle, ... Read More

Advertisements