On whose advice/request can the President dissolve Lok Sabha before the expiry of its term? (a) On the written request of majority of its members (b) On the advice of the Prime Minister (c) On the written request of the Speaker of Lok Sabha (d) On the advice of the Vice-President
2 17280Whose signature is found on a ten-rupee currency note in India? (a) Governor of RBI (b) Finance Secretary of India (c) Finance Minister of India (d) None of the above
15 53072Post New IB Intelligence Bureau Interview Questions
how to create flat file datasubmission in qtp
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 ?
What is extension in magento?
What is the purpose of a business object in blue prism?
If you worked for Wegmans Food Markets, what are you doing?
Who is father of wordpress?
What is event handling in vbscript?
In the hidden markov model, how does the state of the process is described?
Explain different types of seo?
What is awk used for?
Is it possible for a member function to delete the pointer, named this?
What can windows server do?
What are level triggered flip flop?
Power is interrupted while transferring data from internal table to application server. How will you determine many records are transferred in session method and call transaction method? : abap bdc
How do you create a list which is a reverse version on another list in python?