Program

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

To display text on our screen, we will use built-in function print(). It will print back arguments provided in the function. In this article we’ll how to write a program to displays “Hello, World!

Program to mixup characters of 2 strings in JAVA

In this article we’ll see a program to mixup characters of 2 string in JAVA. Input Consider a two strings as Good and Day. Code public class StringMixup { public static void main(String[] args) { String str1 = "Good", str2 = "Day"; int i = 0, str1Length = str1.

Identify whether the number is Even or Odd in JAVA

If any number is exactly divisible by 2 then it’s an even number else it’s an odd number. In this tutorial we’ll see how to check whether the provided number is even or odd number using Modulo(%).

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.