c

3 different C programs to print a hollow parallelogram star pattern

3 different C programs to print a hollow parallelogram using star or any other character. We will learn how to print a hollow parallelogram by using for loops, while loops and with user input characters.

Read
java

Java program to find quotient and remainder in two different ways

Java program to find quotient and remainder of two user given numbers in two different ways. We will learn how to use a separate function to find quotient and remainder.

Read
c

3 different C programs to print a half diamond star pattern

Learn how to print a half diamond star pattern in C programming in three different ways. We will learn how to print this pattern by using for loops, while loops and by using a separate function.

Read
c

3 different C programs to convert kilometers to miles

C program to convert kilometers to miles in three different ways. We will learn how to use macro and a separate function to convert kilometers to miles in C programming language.

Read
c

3 different C program to check for spy number

C program to check if a number is a spy number or not. We will learn 3 different ways to check for a spy number in C, by using a for loop, by using a while loop and by using a separate function.

Read
c

3 ways to find the area and circumference of a circle in C

C program to find the area and circumference of a circle in 3 different ways with user input radius values. We will learn how to solve this by using a separate method and with math.h header file.

Read
python

Python program to check if a number is duck number or not

Learn how to check if a number is a duck number or not. A number is called a duck number if the number contains at least one zero. We will learn two ways to check if a number is a duck number or not.

Read
kotlin

Kotlin program to create a simple calculator

Learn how to create a simple calculator in Kotlin in two different ways. We will learn to write a calculator program using if-else statements and using when expressions.

Read
kotlin

How to remove specific elements from an array using index in Kotlin

Learn how to remove specific elements from an array by using its index in Kotlin. We have to convert the array to a MutableList first and then convert it back to an array.

Read
kotlin

2 ways to find the average of array numbers in kotlin

Learn how to find the average of numbers of an array in Kotlin in two different ways. We can either iterate over the elements of the array or we can use the average function to find the average of numbers of an array.

Read