Java J2EE (14736)
J2ME (151)
Java Related AllOther (507) How TreeMap sorts the objects inside it?? suppose if have include one employee object and one car object. On what basis it will sort?
5 14919we have two applications A1 & A2 both are accesing the same databse table employee at the same time how we will manage this so that both application can get the correct no of emloyee while A1 is inserting a employee at the same time while other applicatuion is getting the empployee list.
5 10305Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }
3 5512you are to choose between two procedures,both of which copute the minimum value in an array of integers.one procedure returns the smallest integer if its array argument is empty. the other requires a nonempty array.which procedure should you choose and why?
1 2690
Realized?
What is the resourcebundle class?
What do you understand by casting in java language? What are the types of casting?
What is an object in java and how is it created?
hi actully i hav form columns with origin and destination names .as like as i need to create one more column with name amount. my requirement is when i select origin and destination columns automatically i need to get amount from database.how can i. please tel me with relative code
What is java string pool?
Find Best Job Vacancies across the world on Jooble!
What is the difference between equals() and == in java?
Write a program to find the whether a number is an Armstrong number or not?
How does java handle integer overflows and underflows?
explain different ways of using thread? : Java thread
How to create a base64 decoder in java8?
What is the difference between break and continue statements?
What is action chaining ?
How is declarative handling of exceptions done in struts ?