To compile a java source stored in a file name as MyCourseLi
     To compile a java source stored in a file name as: MyCourseList. Write down the DOS command to compile the source.  You compile the class MyCourseList without error. What will be the name of the file containing the resulting bytecode?  To change a class name or a package name under NetBeans, what tool in the tool bar you should use?  To run the current a class source program under NetBeans, what tool in the tool bar you should use?  To keep your source file under NetBeans, what tool in the tool bar you should use to save all your work?  What one java console O/P statement to produce these sentences using the String definitions as listed below. We are learning java2 which is advanced java in NY1T spring 2015 class: CS-185-w01. 
  
  Solution
2. Javac MyCourseList.java
3. For every class defined in each source file compiled by the javac command, the compiler stores the resulting bytecodes in a file called class file with a name formclassname.class.
4. The main tools are refactoring techniques such as rename, replace block code with a method, encapsulate fields etc.
5.A Apache ant can help in that. It has got various tools to run a class source program.

