Which Portal element displays portlets?
a book
a portal
a page
desktop
Which is the first item to be added to a portal project when creating a portal application?
a portlet
a desktop
For which is a backing file often used?
perform authentication
back-up a portal context
load resources into the JNDI
initialize a database connection
To customize the skeleton of a portal, which type of resource would need to be created?
javascript
jsp
css
xml
To customize the skin of a portal, which type of resource would be created?
A JPF file corresponds to which architectural component?
model
view
controller
action
Which is the preferred mechanism for implementing Inter-portlet communications?
Event Handlers
Backing files
onRefresh method
listenTo portlet property
Which does a content repository contain?
segments and profiles
elements and nodes
nodes and resources
types and content
What will be output of following code?public class Main { public static void main(String[] args) { int i; i = i + 5; System.out.println(i); }}
Compile time error
5
0
None of above
Which of the following are valid method signature?
public static void main(String[] args)
public static void main()
public void main(String[] args)
public void static main(String[] args)