Now days Sun is providng its latest OpenOffice.org specialist certification exam that enables you to certify your desktop productivity skills in the OpenOffice.org 3 application.

Image

Click the following link to get the latest information about certification contents and purchase:

http://www.sun.com/training/certification/openoffice/index.xml

This is the only Sun approved certification for OpenOffice.org. After gettting this certification the worldwide credential validates your knowledge of basic and advanced text processing functionality using OpenOffice.org.

This exam can be taken by you if you are:

  1. An entry level Office user.
  2. Migrating from other Office productivity suites

  • Share/Bookmark

The valid parameters and return types for the Web service methods are as follows:

  1. All primitive types
  2. All wrapper types
  3. java.lang.BigDecimal and java.lang.BigInteger
  4. java.lang.Calendar
  5. java.lang.Date
  • Share/Bookmark

The POST request is used to send the data to be processed. The PUT request is used to store a resource under the request URL. The Request-URI generates the fundamental difference between the POST and PUT requests. The URI in a POST request identifies the resource that will handle the enclosed entity. The resource might be a data-accepting process, a gateway to some other protocol, or a separate entity that accepts annotations. However, the URI in a PUT request identifies the entity enclosed with the request and the user agent knows what URI is intended and the server MUST NOT attempt to apply the request to some other resource.

  • Share/Bookmark

What is the console class?

The Console class is used to create the instance of a console. A console is a character-based unique device that associates with a JVM. The console of a JVM is dependent upon the following two factors:

  1. The underlying platform
  2. The manner in which the virtual machine is invoked.

If JVM uses an interactive command line without redirecting the standard input and output streams, then its console will exist and will typically be connected to the keyboard and display from which the virtual machine was launched. If JVM starts automatically, it will typically not have a console. It may be possible that the JVM does not have any console. If JVM has a console, then it is represented by a unique instance of the Console class, which can be obtained by invoking the System.console() method.

  • Share/Bookmark