javascript

JavaScript program to convert a seconds value to HH:mm:ss

JavaScript program to convert a seconds value to hour, minute and seconds or HH:mm:ss format. We will also learn how to convert it to other formats.

Read
python

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

Python program to check if a number is a perfect number or not with user input number. It will also find all perfect numbers in a given range.

Read
javascript

JavaScript program to calculate BMI with user input values

JavaScript program to calculate BMI with user input values. It will take the weight and height as inputs from the user, calculate the BMI and print the output.

Read
C++

C++ program to convert a weight in pounds to kilogram

C++ program to convert pounds to kilogram. It will take the weight in pounds as input from the user, convert it to kilogram and print out the result.

Read
python

Python program to check for Moran numbers

Python program to check if a number is moran number or not. This post will also show you how to find all Moran numbers in a range with user input values.

Read
java

4 different Java programs to convert a list to set

Learn how to convert a list to set in Java in different ways. This post will show you 4 different ways to convert a list to set in Java with example programs.

Read
java

Java program to check for disjoint sets in two ways

Learn how to check for disjoint sets in Java in two different ways. We will use iterative approach and Collections.disjoint method to check for disjoint sets in this example.

Read
java

Java next() vs nextLine() differences with examples

Learn the differences between Scanner next() and nextLine() in Java with examples. Both of these methods are used to read user input as strings.

Read
python

Difference between random.sample() vs random.choice() in Python

This post will explain the differences between random.sample() and random.choice() in Python. Both of these functions are defined in the random module and they are used to get a list or a single random element from a list.

Read
c

C program to check if a character is an Alphabet or not

C program to check if a character is an alphabet or not in different ways. We will learn how to compare with letters, ASCII values and isalpha function to check for alphabets.

Read