1. Java Program to find biggest substring in between specified character or string String: i am rajesh kumar ravi in between: 'a' package com.instaceofjava; public class... read more ?
Java Basic Interview Programming Questions on Constructors
Posted by: Instanceofjava Posted date: February 07, 2016 / comment : 6 Core java Interview Questions , Java Programs
Below programs are the basic programs frequently asking in java quizzes try to test your java programming skills by answering the questions. if you are having any doubts... read more ?
Please Respond If you know about any Opportunity
Posted by: Instanceofjava Posted date: February 06, 2016 / comment : 0 jobs
Hi Friends. Are you currently working in some company ? Any openings in your company? Please let us know if you have any openings in your company or... read more ?
Bubble sort algorithm in java with example
Posted by: Instanceofjava Posted date: December 28, 2015 / comment : 0 Java Programs , Sorting algorithms
Java Program to sort array using bubble sort package com.instaceofjava; public class BubbleSortExample{ int[] array={4,2,5,6,9,1}; int n = array.length; int k; for (int m... read more ?
AtomicInteger in Java
Posted by: Instanceofjava Posted date: December 26, 2015 / comment : 0 Java Programs
Java.util.concurrent.atomic package provides very useful classes that support lock free and thread safe programming. The main use of this class is an int value that may be updated... read more ?
How to create immutable class in java
Posted by: Instanceofjava Posted date: December 24, 2015 / comment : 0 Java Programs
In Java String and all wrapper classes are immutable classes. So how to create custom immutable class in java? Lets see how to make a class object immutable.... read more ?
Java Program to find Sum of Digits
Posted by: Instanceofjava Posted date: December 20, 2015 / comment : 3 Java Programs
1. Java Program to find sum of digits without using recursion. package com.instaceofjava; import java.util.Scanner; public class SumOfDigits { public static void main(String[] args) { ... read more ?