#Program.
25 posts filed under this topic.
Program to find ASCII value for a character in JAVA
Discover how to find the ASCII value of a character in Java with our easy-to-follow guide. Learn through a practical example that illustrates the type-casting method, and understand the significance of ASCII in programming.
Identify whether the number is Even or Odd in Python
Identify whether the number is Even or Odd in Python
A Program to display factorial of specified number using for loop in JAVA
A Program to display factorial of specified number using for loop in JAVA.
A Program to display factorial of specified number using while loop in JAVA
A Program to display factorial of specified number using while loop in JAVA.
A Program to display sum of 1 to 10 numbers using for loop in JAVA
A Program to display sum of 1 to 10 numbers using for loop in JAVA.
A Program to display sum of 1 to 10 numbers using while loop in JAVA
A Program to display sum of 1 to 10 numbers using while loop in JAVA.
Identify whether the number is Even or Odd in C-language
Identify whether the number is Even or Odd in C-language
Display the multiplication table in Python
A simple Python program to generate the multiplication table for any given number using loops. Perfect for beginners to practice basic Python syntax and iterative logic.
Generate a Random number in Python
Learn how to generate random integers and floating-point numbers in Python using the standard `random` library. This tutorial covers the `randint()` and `random()` functions with practical code examples.
How to check if a variable is an integer in Python
A quick guide on how to check if a variable is of integer type in Python using the `type()` and `isinstance()` functions. Essential for data validation and type-safe programming.
Swapping Variable Values in Python
Discover multiple ways to swap the values of two variables in Python, including the elegant tuple unpacking method and the traditional third-variable approach.
Find the length of a string using len() function in Python
In this article, we explain a way to find length of a string using built-in len() function, for e.g, length of "Earth is a beautiful planet in Solar System" is 43 (including space).
Pattern programs in Java
In this article we will see different patterns that can be printed using loops in JAVA.
Program to Print Hello, World! in Python
Program to Print Hello, World! in Python
Program to mixup characters of 2 strings in JAVA
Program to mixup characters of 2 strings in JAVA
Identify whether the number is Even or Odd in JAVA
Identify whether the number is Even or Odd in JAVA
Program for Collatz Conjecture in JavaScript
The Collatz Conjecture also known as 3n + 1 conjecture is an eventually one of the unsolved problem in mathematics
JavaScript - String split() function
A tutorial showing the usage of split() function in JavaScript
A Program to print upside down triangle pattern with some fuzzy logic in C
A program to print upside down triangle pattern with some fuzzy logic in C.
A Program to find sum of series from starting number to ending number using for loop in C
A Program to to display sum of series from starting number to ending number using for loop in C.
A Program to display factorial of specified number using for loop in C
A Program to display factorial of specified number using for loop in C.
How to find the length of a string using strlen() in C
C program to find length of a string, for e.g, length of "East or West INDIA is best" is 26 (including space and excluding null character).
Convert hexadecimal color to rgb or rgba in php
Convert hexadecimal color to rgb or rgba in php
Write a Program to print Hello, World! in JAVA
A program to print "Hello World!" in JAVA.
Write a Program to print Hello, World! in C
A program to print "Hello World!" in C.