Correct Answer: SE01 is the main screen of the Change and transport Organizer From here the administrator can acheive all tasks related to transport requests - such as create, change, view logs, display client/delivery transports, etc SE09 and SE10 can also be accessed from here However, not all developers might be granted access to this transaction SE09 is the workbench transport requests transaction - here the developers can track changes to all ABAP workbench objects (dictionary, reports, module pools, etc) This is a developer-specific transaction and mostly all developers have access to this transaction SE10 is the customizing request display transaction - this displays all the customizing requests in the system Again, this could be restricted to Business analysts if required, since they would be doing most of the customizing changes in the system
5. Difference between transparent tables and pooled tables
Correct Answer: Transparent tables: Transparent tables in the dictionary has a one-to-one relation with the table in database Its structure corresponds to single database field Table in the database has the same name as in the dictionary Transparent table holds application data Pooled tables: Pooled tables in the dictionary has a many-to-one relation with the table in database Table in the database has the different name as in the dictionary Pooled table are stored in table pool at the database level
6. What is the difference between Silverlight 1.0 and 2?
Correct Answer: Silverlight 1 is purely AJAX and JavaScript based All the code has to be written in JavaScript and XAML Silverlight 2 supports managed code When the Silverlight 2 runtime is installed, it installs a limited version of the NET runtime on the client machine
Correct Answer: Both JavaScript and Jscript are almost similar JavaScript was developed by Netscape Microsoft reverse engineered Javascript and called it JScript
9. If an array with name as "names" contain three elements, then how will you print the third element of this array?
Correct Answer: Use documentforms[0]submit(); (0 refers to the index of the form ? if you have more than one form in a page, then the first one has the index 0, second has index 1 and so on)