Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...




Java J2EE Interview Questions
Questions Answers Views Company eMail

What is a void method?

922

Can constructor return value?

965

How does callback work in java?

1067

What are the disadvantages of object oriented programming?

1279

What are different types of references?

978

Is a copy constructor?

1060

Can we extend a class with private constructor?

1010

What are the parts of a method?

982

What does function identity () do?

965

What are the drawbacks for singleton class?

1023

Can private members of a base class are inheritable justify?

929

Is a method a procedure?

1052

What is difference between adapter class and listener?

1044

What are the 6 mandatory procedures for iso 9001?

1033

Can we override constructor?

1025


Un-Answered Questions { Java J2EE }

What is the console in java?

1159


What does hql stand for?

325


Tell me what are the steps involved in configuring the jms?

980


How do you compare objects in java?

957


Explain JMS and its Component?

906


public class ActionDTO extends GenericDTO implements Serializable,Auditable { // default serial version id, required for serializable classes. public static final String ACTION_SUSPEND = "SPN"; public static final String ACTION_DEREGISTER = "DRR"; public static final String ACTION_REINSTATE = "REI"; private static final long serialVersionUID = 1L; private Long actionId; private long accountId; private Date actionDate; private String actionType; private String remarks; private AccountDTO account; public ActionDTO() { } public ActionDTO(Long accountId, String action, String remarks, String updatedBy) { setAccountId(accountId); setActionType(action); setActionDate(new Date()); setRemarks(remarks); setUpdatedBy(updatedBy); } public Long getActionId() { return this.actionId; } public void setActionId(Long actionId) { this.actionId = actionId; } public long getAccountId() { return this.accountId; } public void setAccountId(long accountId) { this.accountId = accountId; } public Date getActionDate() { return this.actionDate; } public void setActionDate(Date actionDate) { this.actionDate = actionDate; } public String getActionType() { return this.actionType; } public void setActionType(String actionType) { this.actionType = actionType; } public String getRemarks() { return this.remarks; } public void setRemarks(String remarks) { this.remarks = remarks; } // bi-directional many-to-one association to AccountDTO public AccountDTO getAccount() { return this.account; } public void setAccount(AccountDTO account) { this.account = account; } @Override public String toString() { // TODO Auto-generated method stub return null; } } what is the purpose of @Override public String toString()...and what will do here ?

2578


What is the exception hierarchy in java?

964


How should you type cast a remote object?

1000


What is preparedstatement in java?

1050


Write java program to reverse string without using api?

1063


What is the meaning of “dirty read” in the database?

1036


What do you understand by the bean persistent property?

1010


Why webdriver is an interface?

1057


What is the output of the below java program?

1048


What is used to display the intermediate result in an interceptor?

956