HomeAuthor: VishaliniPage 5

Vishalini

Showing 81 - 100 of 110 results
This C program converts an octal number to its equivalent decimal representation. Octal is a base-8 number system that uses...
A linked list is a data structure consisting of a sequence of nodes. Each node contains an element (or data)...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...
This C program converts an octal number to its equivalent binary representation. Converting numbers between different number systems is a...
This C program finds the frequency of a substring in a given string. Problem statement You are required to write...
This Python program finds and displays letters that are not common in two strings. Problem Statement You are tasked with...
This C program finds the Highest Common Factor (HCF) of two given numbers without using recursion. Problem statement Write a...
This C program finds the Greatest Common Divisor (GCD) and the Least Common Multiple (LCM) of two given numbers. The...
In C#, you can create a program to calculate the sum of N numbers by taking input from the user...
This Python program counts the number of words in a text file. Problem Statement You have been tasked with developing...
This Python program reads and prints the contents of a file in reverse order. Printing the contents of a file...
Heap Sort is a popular comparison-based sorting algorithm that uses a binary heap data structure to efficiently organize and sort...
This Python program checks if two numbers are amicable numbers or not. Amicable numbers are pairs of numbers where the...
Finding the sum of the digits of a number is a common problem in programming and mathematics. This task involves...
Selection Sort is a simple sorting algorithm that works by repeatedly selecting the minimum (or maximum) element from an unsorted...
This C program checks whether a given number is a palindrome or not. What is a Palindrome? A palindrome is...
Bubble Sort is a simple and straightforward sorting algorithm used to arrange elements in a list or array into a...
This Python program replaces all occurrences of the character โ€˜aโ€™ with โ€˜$โ€™ in a given string. Problem Statement Write a...
This Python program flattens a nested list using recursion.Flattening a nested list refers to the process of converting a list...
This C# program identifies and prints all Armstrong numbers within the range of 1 to 1000. Armstrong number (also known...