February 6, 2019

Srikaanth

Eclipse Basic Freshers Interview Questions And Answers

Explain What Are Activities You Can Do In Eclipse?

In Eclipse, you can do following activities:

    Create generic projects
    Edit files in a generic text editor
    Share files and project in a CVS (Concurrent Version System) server.

What Are The Steps To Change The Jdk Compliance Level?

The steps to change the JDK compliance level:

    Go to Windows
    Select Preferences
    Select Java – Compiler
    Select Java Compliance Level

Explain How Can You Generate Javadoc Documentation For Your Code?

To generate JavaDoc documentation for your code, In Eclipse,

you have to follow the following steps:

    Go to File menu
    Select Export
    Select Java
    JavaDoc
    Choose the projects, other properties and output directory for which JavaDoc is to be created
    Click Finish.

Mention What Is The Class Path Of A Plugin In Eclipse?

The classpath of a plugin is “OSGI parent class loader”. In OSGI, all class loaders have a common parent class loader.

Explain How Can You Add A Library To The Class Path Of A Plug-in?

To access particular library from a plugin, the library needs to be added to the classpath of a plug-in.  There are four ways of doing this.

    The JAR can be added to the boot classpath
    The JAR can be added to the declared libraries for a plug-in
    Create a new plug-in that can be added to the library
    By using OSGI parent loader.

Explain How To Access Ui Objects From A Non-ui Thread?

To access UI objects from a non-ui thread, use command
Display.getDefault().asyncExec(new Runnable()…)
This will cause the run() method of the runnable to be invoked by the user-interface thread at the next reasonable opportunity.

Explain How To Fire A Key Event In The Test Code To Make The Program Act As If A User Pressed A Key?

To fire a key event in test code to make the program act as if a user pressed a key.

You need to follow two ways.

    notifyListeners(…) or
    post(Event).

Explain What Are Extension Points?

Whenever a plug-in wants to allow other plug-ins to extend or customize portions of its functionality, it will declare an extension point.

Explain How To Config A Plugin To Start Automatically During Platform Starts Up?

To config a plugin to start automatically during platform starts up, define the ‘Eclipse-AutoStart=true’ header in Manifest file.

Explain What Is An Eclipse Modeling Framework?

An eclipse modeling framework is a Java/XML framework. It is used for generating tools and other applications based on simple class models.

Explain How Can You Hide Menu Contributed By Other Plugins?

To hide menu contributed by other plugins, you can use org.eclipse.ui.activities extension.

Mention What Are The Differences Between ‘import-package’ And ‘require-bundle’ In Eclipse?

‘Import-Package’ is used to declare a dependency on a package without knowing which exact bundle will provide it
‘Require-Bundle’ specifies your plugin project’s dependency on other specific bundle and versions explicitly.

Explain What Is Ide? Name Some Java Ide?

IDE stands for Integrated Development Environment.

Some of the Java IDE are:

    Eclipse
    Netbeans
    RAD ( Rational Application Developer )
    WSAD (Websphere Application Developer )

Define Eclipse? What Are The Key Eclipse Projects And Technologies?

Eclipse is used in several different areas, e.g. as a development platform for Android or Java applications. It is also used for managing and deploying software across the entire software lifecycle.
The key Eclipse projects and technologies are;

    Eclipse platform
    Eclipse project
    JDT or Java Development Tools
    Plug-in Development Tools (PDE)

Explain What Is Shell And What Is Display?

The Shell class represents windows while the Display class represents the GUI process(thread).

Explain What Is Included In A Rich Client Platform?

In a rich client platform,

it includes:

    Eclipse Runtime
    JFace
    Workbench
    SWt.

https://mytecbooks.blogspot.com/2018/01/eclipse-basic-freshers-interview.html
Subscribe to get more Posts :