A+ Work





In this lab you will create three programs
Index.java
Index2.java
ThreeArrayLists.java
Deliverables
Program files for each of the following three programs
Index
Index2
ThreeArrayLists
At the beginning of ALL your programs, put a comment box that includes the program name, your name, and a brief description of the program.
Example:
/***********************************************************************

Program Name: ProgramName.java

Programmer's Name: Student Name

Program Description: Describe here what this program will do

***********************************************************************/
How to submit your assignment:
The programs MUST have the same names as the assignment title.
Each Java source file (*.java) must include a corresponding class file (*.class) program as evidence of success.
In addition to the program source code files and byte code files, put all your program source code files and screen shots of your program output files into a Word document.
You must use a zipped folder to send your weekly assignment to the Dropbox. Do not send subfolders within your zipped folder. Place ALL of the .java and .class files for the week into the one zipped folder. The zip folder should be named: CIS355A_YourLastName_iLab_Week6, and this zip folder will contain all the weekly programming assignments.
iLAB STEPS
STEP 1: Index (10 points)
Write a Java GUI application called Index.java that inputs several lines of text and a search character and uses String method indexOf to determine the number of occurrences of the character in the text. This program is not case sensitive and both upper and lower case must be counted for.
Sample Program output: View Output Description