atlas news
    
Codeamy
15  janvier     08h27
Bubble Sort in Java
   In this example, You learn about Bubble Sort in java.Here you learn Java program for bubble sort, You are given a array and the task of the program to sort the array using bubble sort algorithm.Learn in detail about bubble sort.Bubble Sort Algorithm in Java import java.util.Scanner;...
    08h04
Matrix Multiplication in java
   Matrix Multiplication in JavaIn this example, You will find a program for matrix multiplication in java and learn how matrix multiply calculates. In the previous article, we do matrix addition in Java. The program asks the user for the number of rows and the number of columns then takes...
10  janvier     17h45
Palindrome Program in Java
   Palindrome Number in JavaIn this example, You learn about java program for Palindrome. A Palindrome Number is a number that is same after reverse. Example: , , , etc. also a string can be a palindrome such as COC, www, etc.Palindrome Number AlgorithmReceive the number to check for...
09  janvier     18h13
Factorial of large numbers
   In this example, You learn about Factorial of Large Number in java program. Here you learn factorial of large numbers in Java, You are given a number and the task of the program to find factorial of large number.Factorial of Large Number Program in Java import java.util.Scanner;...
    15h20
Armstrong Number Program in Java
   In this example, You learn about an Armstrong Number in java program. Here you learn an armstrong number in Java, You are given a number and the task of the program to check number is armstrong or not.Armstrong Number Program in Java import java.util.Scanner; public class...
08  janvier     18h16
Addition of Two Matrix in Java
   In this example, You learn about java program for addition of two matrix. Here you learn addition of two matrix in Java, You are given an two dimensional arrays and the task of the program to addition of two matrix in java.Addition of Two Matrix in Java import java.util.Scanner; ...
    18h02
Binary Search Program in Java
   In this example, You learn about java program for Binary Search. Here you learn Binary search in Java, You are given an array, also number to find in the present array and the task of the program to find number in array.Binary Search Program in Java import java.util.Scanner; public...
    17h53
Linear Search Program in Java
   In this example, You learn about java program for Linear Search. Here you learn linear search in Java, You are given an array, also number to find in the present array and the task of the program to find number in array.Linear Search Program in Java import java.util.Scanner; public...
    17h40
Reverse a String in Java
   In this example, You learn about java program to reverse a string. Here you learn reverse a string in Java, You are given a string and the task of the program to Reverse a String.Reverse a String in Java import java.util. ; public class ReverseString ...
    11h57
Java Program to Print Floyd’s Triangle
   In this example, You learn about java program to print floyd’s triangle. Here you learn print floyd’s triangle in Java, You are given a number and the task of the program to print Floyd’s Triangle.Java Program to Print Floyd’s Triangle import java.util.Scanner; public...
    11h41
Find all substrings of a String in java
   In this example, You learn about java program to find all substrings of a String. Here you learn all substrings of string in Java, You are given a string and the task of the program to find all substrings of a String.Java Program to find all substrings of a String import java.util...
26  octobre     14h24
Java Program Random Number Generator
   In this example, You learn about random number generator java.Here you learn Java program for random number generator, You are given a year and the task of the program to generate random number by making instance of random class.Random Number Generator in Java import java.util.Random;...
    14h04
Leap Year Program in Java
   In this example, You learn about leap year program in JavaHere you learn Java program for leap year, You are given a year and the task of the program to find given year is a leap year or not.Java Leap Year Program import java.util.Scanner; public class leapYear ...
22  octobre     12h00
Find ASCII Value of a Character in C
   nbsp;In this example, You learn about C program for find ASCII value of a character. Here you learn find ASCII value in C, You are given a character and the task of the program to find ASCII value of a character.C Program to find ASCII value of a Character include...
    11h31
Convert string to lowercase or uppercase in C
   nbsp;In this example, You learn about C program for convert string to lower case and upper case. Here you learn convert string to lower case and upper case in C, You are given a string and the task of the program to find convert string to lower case and upper case.C Program for...
15  octobre     17h59
How is Java Platform Independent?
   In previous tutorial you learned about features of Java language but In this tutorial, We will provide justify of the feature Java Platform Independent.Our machine understand machine level language but it is not possible to write code in machine level language that’s why we write code in human...
14  octobre     18h40
Java Program to find LCM of Two Numbers
   In this example, You learn about Java program to find LCM of two numbers.Here you learn find LCM of numbers in Java, You are given two numbers and the task of the program to find LCM GCD in Java.LCM Lowest Common Factor A Lowest Common Factor of two numbers is the smallest positive number that...
06  août     08h51
Java Program for Pythagorean Triples
   In this example, You learn about Java program for Pythagorean Triples. Here you learn pythagorean triplet in Java, You are given a numbers and the task of the program to deduce whether the given numbers form a right angled triangle or not i.e. pythagorean triplet in Java.A...
30  juillet     07h23
Java Program to Remove Spaces from String
   In this example, You learn about Java program to remove spaces from string. Here you learn Java remove spaces from string, You are given a string and the task of the program to remove spaces in Java.We use length function to find a length of string and charAt to find character at...
    06h16
Java Program to Check Whether a Number is Prime or Not
   In this example, You learn about Java program to check Prime Number. Here you learn check prime of number in Java, You are given a number N and the task of the program to prime check in Java.A prime number is a natural number and that is greater than . Prime Number is divisible by or...
16  avril     08h35
C Functions
   In this tutorial, I’ll answer the question: C functions. I’ll also show you function declaration, function call in C and much more.Let’s get started.C functionsAs we learn before and try to write code sometime our code get bigger in number of lines and also increases in size to store. It is not...
14  novembre     17h10
Java Variables
   In this tutorial, You’ll learn about java variables. Also learn final variable, rules for identifiers in java Types of Java Variables Variables are a box or container in a memory of device to store some data values in it.In java, we have different types of java variables for different types...
30  septembre     18h55
How to achieve good grades in your accounting assignments homework ?
   nbsp; The main motive of giving assignments to students is to check whether they have understood that selected topic or subject. However if the subject is not understand to a student means it will reflect their meager learning and weak structure for...
24  juillet     16h36
Kth Largest Element in Array
   In this example, You learn about c program to find kth largest element in array.Here you learn program to find kth largest element in C, This problem you see on competitive programming websites like leetcode, hackerrank, etc. ExplanationIn this program, we simply use pre built...
22  juin     18h56
Program for Left Rotation of Array in C
   In this example, You learn about c program to left rotation of array.Here you learn program to left rotation of array in C, This problem you see on competitive programming websites like leetcode, hackerrank, etc. You have an array and then rotate the array into anti clockwise direction...