Unable to initialize threads: cannot find class java/lang/Thread
Unable to initialize threads: cannot find class java/lang/Thread: Cause: [sociallocker] 1. If you have set wrong CLASSPATH,PATH or JAVA_HOME then […]
» Read morenext gen Developer
Unable to initialize threads: cannot find class java/lang/Thread: Cause: [sociallocker] 1. If you have set wrong CLASSPATH,PATH or JAVA_HOME then […]
» Read morePHP Program 1: [php] $str1 = "Java"; $str2 = "JAVA"; if (strcasecmp($str1, $str2) == 0) { echo "Both are Equal"; […]
» Read moreto_char: to_char converts a date to string. Query: Select to_char(sysdate) from dual; Output: 25-NOV-13 Query: Select to_char(sysdate,’DD-MM-YYYY’) from dual; Output: […]
» Read morePalindrome: Logic:Given Number/String should be equal with the Reversed of the given Number/String. Eg:101 – Palindrome Number (Given and Reverse […]
» Read morePrinting All Possible Combinations of a 3 Digit Number Java Program: Logic: We have to write 3 for loops and […]
» Read moreDisplaying Opposite Character: Logic: First we should have to find the given case, for this you can use Character.isLowerCase(given character) […]
» Read morePrime Number or Not in Java Program: Logic:The number should not be divisible except its own and 1. Which means […]
» Read moreScenario: You are given with a arraylist with all datatype values. Eg: Integer and String values. But you want to […]
» Read moreArrayList Modification: [java highlight=”23,24″] package in.javadomain; import java.util.ArrayList; import java.util.ListIterator; public class ReverseIteration { public static void main(String[] args) { […]
» Read moreArrayList Iteration: [java highlight=”16,18,19″] package in.javadomain; import java.util.ArrayList; import java.util.ListIterator; public class ReverseIteration { public static void main(String[] args) { […]
» Read more