java

Java program to check if a number is evil number or not

Java program to check if a user input number is evil number or not. Learn how to check if a number is evil number using 3 different ways. Also learn how to find all evil numbers from 1 to 100 in Java.

Read
c

C program to keep reading inputs until -1 is received

C program to keep reading user inputs until -1 is entered by the user. Also learn how to find the total positive and negative numbers entered by the user.

Read
c

C program to check if a number is a Strong number or not

C program to check if a number is a strong number or not. We will learn how to write a recursive program and how to use a for loop to find if a number is strong in C and print all strong numbers from 1 to 1000.

Read
c

C program to check if a number is Neon or not

C program to check if a number is a Neon number or not. Two different ways to find out if a number is a Neon number and find out all Neon numbers in a range using C programming.

Read
c

C program to convert binary values to octal

C program to convert binary values to octal. This post will show you the steps to convert a binary value to octal and we will write a C program to do the octal conversion using user input binary value.

Read
java

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

Java program to check if a number is a duck number or not. This program will take one number as input from the user and print if the number is a duck number or not.

Read
python

Python program to print a cross pattern using star

Learn to print a cross pattern using star or any other character in Python. It will take the height as input from the user and print the pattern for that height.

Read
python

Python in and not in operators explanation with examples

Python in and not in operators are used to check if an item is in a sequence or not. Learn how to use in and not in operators with different examples in this post.

Read
python

Python program to convert a binary to decimal

Python program to convert a binary value to decimal. Learn 4 different ways to convert binary to decimal. The program will take the binary value as input from the user and print the decimal output.

Read
java

Java program to check if a number is a spy number or not

Java program to check if a number is spy number or not. We will learn two different ways to get a number as input from the user and check if it is a spy number.

Read