Description: programming languages Online Quiz - 72 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Select the output of the following SQL statement : SELECT RPAD(name,10,'x') from client_table where name='TEST';
It is possible to re-load an object and all its collections at any time, using the xxxx() method. This is useful when database triggers are used to initialize some of the properties of the object.What is the xxxx() method ?
It is possible to re-load an object and all its collections at any time, using the xxxx() method. This is useful when database triggers are used to initialize some of the properties of the object.What is the xxxx() method ?
How can the mapping files be configured in Hibernate?
What does session.createQuery("Query").scroll() return ?
Which statement is correct?
If you are not certain that a matching row exists in the database then which method is the best ?
How to enable query cache in hibernate
Which statement is correct ?
How can you make a property be read from the database but not modified in anyway
Is the Session threadsafe in Hibernate ?
What does session.evict() method do ?
Which statement is correct ?
Does hibernate allow mixing table-per-class hierarchy and table-per-subclass strategies?
Please select right set of technologies that are required for implementing Dynamic Content or DHTML in your application
parseJSON is a standard function available in javascript like alert, eval and others.
One can add custom method and properties to objects in javascript without using prototype as well.
The following piece of javascript code is going to work fine. function tryVariableArguments() { var intCnt = 0; for (intCnt = 0; intCnt < tryVariableArguments.arguments.length; intCnt++) { alert(tryVariableArguments.arguments[intCnt]); } } Trial Page tryVariableArguments('1','2','3'); tryVariableArguments('1','2'); tryVariableArguments();
onUnload event of Javascript is fired in which of the following conditions
window.location.href="www.google.com". The given statement when executed would result in one of the following: