HomeAuthor: VishaliniPage 3

Vishalini

Showing 41 - 60 of 110 results
This C# program demonstrates the process of copying a specified section of one array to another array. Arrays in C#...
This Python program checks if a number is a strong number or not. A strong number (also known as a...
Comb Sort is a relatively simple sorting algorithm that improves upon the performance of Bubble Sort. It was designed to...
This C program calculates the sum of the first N natural numbers using recursion. Problem Statement The program should perform...
This C program converts a binary number to its corresponding Gray code using recursion. Binary Code: Binary code is a...
A queue is a linear data structure that follows the First-In-First-Out (FIFO) principle, which means that the element added to...
This C# program illustrates left-shift operations, which are bitwise operations used to shift the bits of an integer to the...
This Python program implements Gnome Sort, a simple sorting algorithm that works as follows: Gnome Sort is a simple, comparison-based...
This C program finds the Highest Common Factor (HCF) of two given numbers using recursion. Problem Statement Write a C...
This Python program sorts a hyphen-separated sequence of words in alphabetical order. Problem Statement This version presents the problem statement...
This Python program checks whether a string is a palindrome using recursion. word, phrase, number, or other sequence of characters...
Quick Sort is a highly efficient sorting algorithm that follows the divide-and-conquer paradigm to sort an array or list of...
The provided Python program is designed to find the prime factors of a given number. It utilizes a function called...
Insertion Sort is a simple and intuitive sorting algorithm that builds the final sorted array one item at a time....
This C# program prints the famous โ€œHello, World!โ€ message to the console without using Console.WriteLine. Problem Statement Write a Program...
This C# program is designed to search for a specific element within an array of integers. Searching for elements in...
This C program demonstrates how to reverse a stack using recursion. A stack is a linear data structure that follows...
Bubble Sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if...
This Python program implements Depth-First Search (DFS) on a graph using recursion. DFS explores as far as possible along each...
This C# program is designed to calculate and display the sum of each row in a matrix. A matrix is...