Core Java (6529)
Advanced Java (552)
Swing (223)
EJB (402)
Java Networking (49)
Hibernate (1009)
Spring Framework (1486)
Java J2EE AllOther (116) What is
class A { private int i; } class B extends A { private int i; } if I create an object of B class what will be the memory of that object.
2 8516Map map = new HashMap(2); map.add(“1”,”one”); map.add(“2”,”two”); map.add(“3”,”three”); What will happen at this line?
5 15998Write down program for following scenario. Use java coding standard. You have array list with some words in it..we will call it as dictionary….and you have a arbitrary string containing some chars in it. You have to go through each word of dictionary and find out if that word can be constructed with the help of chars from arbitrary string given. If you find the word print it else print none.
2729Why Set interface contains unique elements, what internally implemented for this so that it contains unique elements?
1 8106What will be the output of the program?
public class Test {
public static void main(String args[]) {
ArrayList
How to read request headers from servlets?
Which keyword specify that a variable is effectively final ?
How does ioc work in spring?
What is the diffrence between a local-tx-datasource and a xa-datasource?
What is public/private protected in java?
Define thin client?
When singleton beans are created in spring?
What do you understand by @requestmapping annotation?
what are abstract functions?
can I implement my own start() method? : Java thread
Why java is said to be pass-by-value ?
What is the difference between RMI and Corba?
Is orphanremoval true?
What are the struts2 error message keys that can come during file uploading process?
What are advice, aspect, join-point and point cut in spring?