programming languages Online Quiz - 72
Description: programming languages Online Quiz - 72 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
window.location.href="www.google.com". The given statement when executed would result in one of the following:
onUnload event of Javascript is fired in which of the following conditions
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();
One can add custom method and properties to objects in javascript without using prototype as well.
parseJSON is a standard function available in javascript like alert, eval and others.
Please select right set of technologies that are required for implementing Dynamic Content or DHTML in your application
Does hibernate allow mixing table-per-class hierarchy and table-per-subclass strategies?
Which statement is correct ?
What does session.evict() method do ?
Is the Session threadsafe in Hibernate ?
How can you make a property be read from the database but not modified in anyway
Which statement is correct ?
How to enable query cache in hibernate
If you are not certain that a matching row exists in the database then which method is the best ?
Which statement is correct?
What does session.createQuery("Query").scroll() return ?
How can the mapping files be configured in Hibernate?
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 ?
Select the output of the following SQL statement : SELECT RPAD(name,10,'x') from client_table where name='TEST';