Question

Write a 1-2-page report on your experience with learning Eclipse. What could be provided that would...

  1. Write a 1-2-page report on your experience with learning Eclipse. What could be provided that would have made the experience easier?

  2. Use the “Hello World” program in Chapter 1 as a reference and write a Perl program with file name of greetings.pl. Your program will display one or two lines to introduce yourself.

  3. After you finish the greetings.pl program, run it, and make a print screen image of the result, and paste it to the end of the report you write in Step 1.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

My Eclipse Learning

To begin with, lets put straight forward that I have to learn Eclipse not by choice but by circumstance. I am a simple Web Designer playing with codes in HTML, CGI; manipulating images in Photoshop and creating fascinating web pages using DreamWeaver. Now the Office in which I works, is a Web Designing Consultant and takes the Projects related to Web Designing and Web Maintainence of its Client. But that is uptil now. The Office recently recruits a General Manager to manage and drive the entire IT Projects and also expand the business of the Organization in IT Field. Now on taking the helm of the entire IT workforce of the organization, our GM makes it clear that the Company will diversify its business into new domains like Web Applications, Gaming, Mobile Applications, etc. Each of us have been given a choice to align oneself to any of the new business domains. Since I have been an experienced Web Designer, a natural choice that immediately comes to my mind is to go for Web Applications.

Our GM (IT) is a bit alien to Microsoft products. He made it clear to us that all the Web, Games and Mobile Applications need to be created using Java with backend database being of MySQL. Now, it is obvious that I have to learn Java, from basics to advanced. But since I am accustomed to GUI environment, so learning Java all through the Command Line interface appears bit opposite to my programming nature. So, the search begins for the IDE to learn Java. And then someone suggests that the best and simplest IDE for Java is the Eclipse. So, my journey of Eclipse starts, not in dark but for brigther future.

In the context of computing, Eclipse is an integrated development environment (IDE) primarily used for developing Java applications. However, it can also be used for developing applications in other programming languages such as C/C++, Python, PERL, Ruby etc.

The Eclipse platform is composed of plug-ins and is designed to be extensible using additional plug-ins. In fact, Eclipse can be used as an IDE for any programming language for which a plug-in is available. The Java Development Tools (JDT) plug-in allows Eclipse to be used as a Java IDE, C/C++ Development Tools (CDT) is a plug-in that allows Eclipse to develop C/C++ applications, PyDev is a plugin that allows Eclipse to be used as a Python IDE, , the Eclipse Scala plug-in allows Eclipse to be used an IDE in developing applications in Scala and PHPeclipse is a plug-in that allows Eclipse to be used as complete development tool for PHP.

To learn about Eclipse, I enrolled in a Computer Training Institute for Weekend batches. The Institute has well-equipped infrastructure with latest hardware configured Computers which makes compilation and excution really fast without having to wait for long. The Classrooms have Smartboard and all necessary Audio-Visual equipments as necessary for impart training. Our Instructor has extensive knowledge of Eclipse IDE and Java Programming Language. The Study Materials being distributed are well written in simple and lucid language with examples from Real-Life scenarios. The entire syllabus is well structured going from very basics and gradually entering into the complex topics. There are lots of practical exercises to be done at the end of each Chapter. These Practicals are divided into Guided as well as Unguided, with few Complex Practicals for all those over the top learners who are way ahead than rest of us in completing the practicals.

Despite of all the positive traits as mentioned there are few odd ones out too which would have further makes the learning more engaging and fruitful:

  • The machines both in the Classroom and Lab should be provided on 1:1 ratio so a learner can learn and practice at his/her own pace and uderstanding. It will also imbibe deeper understanding of he topics in the learner.
  • At times jumping from one topic to another is too fast. A best approach would have been to insert a pause, so we can test what was explained before moving to next command.
  • The shortcuts commands should be shown on a pop up, because sometimes is difficult to understand and the automatic transcripts did not catch the Commands and Tools names right.
  • The course should have spent some time going over the basic structure of how projects are managed within the Eclipse interface.

Overlooking these minor hiccups, overall the Course is both engaging and informative.

Perl Program to Print Self Introduction

greetings.pl

#

# Program in Perl to Introduce Yourself

#

print "Hello All!\n";

print "Myself Andrews Simmons. I belongs to Montreal, Canada. \n";

print "Currently, I am doing Masters in Electrical Engineering from MIT.";

Execution and Output

Add a comment
Know the answer?
Add Answer to:
Write a 1-2-page report on your experience with learning Eclipse. What could be provided that would...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • 1. Write a program in Easy68K to print out “Hello World” in two lines as Hello...

    1. Write a program in Easy68K to print out “Hello World” in two lines as Hello World Paste your code and screenshot of the output in this file.

  • 201: Lab A 1. Download Eclipse onto your computer 2. Please follow this link if you are having trouble in installing Ecl...

    201: Lab A 1. Download Eclipse onto your computer 2. Please follow this link if you are having trouble in installing Eclipse. https://www.youtube.com/watch?v=TXbuATMlVNY&index=19&list=PL_v5Vo_UXw aHWOr2I9dq7DxI6Iw3eQzOd 3. Sample code #include <iostream> using namespace std; int main () { cout << "Hello world\n"; return 0; } Problem 2-1: Write a program that ask the user for the flowing: How many shares to be bought: The price per share: Percent commission for the broker for each transaction: Average annual return as of percentage: The...

  • What to submit: your answers to exercises 2. Write a Java program to perform the following...

    What to submit: your answers to exercises 2. Write a Java program to perform the following tasks: The program should ask the user for the name of an input file and the name of an output file. It should then open the input file as a text file (if the input file does not exist it should throw an exception) and read the contents line by line. It should also open the output file as a text file and write...

  • Task 3: Creating a Simple jQuery Application 1. Launch HTML-Kit. 2. Create a new HTML file...

    Task 3: Creating a Simple jQuery Application 1. Launch HTML-Kit. 2. Create a new HTML file and save it as nnLab8.htm. 3. Add the following HTML to the file: <!DOCTYPE HTML> <html> <head> <title>Hello World - jQuery Style</title> </head> <body> <div id="first"></div> <div id="second"></div> <a href="#" id="link">Click Me!</a><br /> <span id="greeting"></span> </body> </html> 4. Add the following<script> element to the<head> section. NOTE: Use the jQuery version number that matches the file name of the file you downloaded in Step 1....

  • Python Modify your program from Learning Journal Unit 7 to read dictionary items from a file...

    Python Modify your program from Learning Journal Unit 7 to read dictionary items from a file and write the inverted dictionary to a file. You will need to decide on the following: How to format each dictionary item as a text string in the input file. How to covert each input string into a dictionary item. How to format each item of your inverted dictionary as a text string in the output file. Create an input file with your original...

  • Can someone please code this problem in c++? Problem 1 You are to write a C++...

    Can someone please code this problem in c++? Problem 1 You are to write a C++ program to print the following design in the output window. (Note that * is an asterisk, which is commonly found above the 8 on a standard keyboard. On different terminal types, the asterisk may be rendered differently. You need not concern yourself with the appearance of the asterisk. When I run the program, as long as you have used the correct key on the...

  • Please write this in C. Write this code in Visual Studio and upload your Source.cpp file for checking (1) Write a program to prompt the user for an output file name and 2 input file names. The progra...

    Please write this in C. Write this code in Visual Studio and upload your Source.cpp file for checking (1) Write a program to prompt the user for an output file name and 2 input file names. The program should check for errors in opening the files, and print the name of any file which has an error, and exit if an error occurs opening any of the 3 For example, (user input shown in caps in first line) Enter first...

  • The purpose of this assignment is to get experience with an array, do while loop and...

    The purpose of this assignment is to get experience with an array, do while loop and read and write file operations. Your goal is to create a program that reads the exam.txt file with 10 scores. After that, the user can select from a 4 choice menu that handles the user’s choices as described in the details below. The program should display the menu until the user selects the menu option quit. The project requirements: It is an important part...

  • 1. Write a program that prompts the user to enter three integers and display the integers...

    1. Write a program that prompts the user to enter three integers and display the integers in non-decreasing order. You can assume that all numbers are valid. For example: Input Result 140 -5 10 Enter a number: Enter a number: Enter a number: -5, 10, 140 import java.util.Scanner; public class Lab01 { public static void main(String[] args) { Scanner input = new Scanner(System.in);    } } ---------------------------------------------------------------------------------------------------------------------------- 2. Write a program that repeatedly prompts the user for integer values from...

  • Your program must prompt the user to enter a string. The program must then test the...

    Your program must prompt the user to enter a string. The program must then test the string entered by the user to determine whether it is a palindrome. A palindrome is a string that reads the same backwards and forwards, such as "radar", "racecar", and "able was I ere I saw elba". It is customary to ignore spaces, punctuation, and capitalization when looking for palindromes. For example, "A man, a plan, a canal. Panama!" is considered to be a palindrome....

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT