Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Please help me with the odd #\'s. It would be really helpful if you show work an

ID: 3883434 • Letter: P

Question

Please help me with the odd #'s. It would be really helpful if you show work and technique. Thanks!

3. Name at least two classes to which each of these objects might belong: a. your cousin b. Macys c. Egypt d. Thomas Jefferson Write, compile, and test a program named Personallnfo that displays a person's name, birthdate, work phone number, and cell phone number. 4. Write, compile, and test a program named Lyrics that displays at least four lines of your favorite song. 5. Write, compile, and test a program named Comments that displays a statement that defines program comments. Include at least one block comment and one line comment in the program ents, Include at least one 6. 7. Write, compile, and test a program named StopSign that displays a pattern similar to the image shown in Figure 1-19, 0000 X STOPX Figure 1-19 Output of StopSign program

Explanation / Answer

Hi, I have answered Q3 and Q5.

Please repost others in separate post.

Q3.

Ans: 1.Country

Egypt and Macys

2. Person

your cousin and Thoms Jefferson

Q5.

public class Lyrics {

  

   // string array to store the lines of lyrics

   private String[] lyrics;

   private int maxLines; // max line in lyrics

   // number of current lines in lyrics

   private int lines;

  

   // constructor

   public Lyrics(int n) {

       // initializing variables

       lyrics = new String[n];

       maxLines = n;

       lines = 0;

   }

  

   public void addLine(String l) {

       if(lines < maxLines) {

           lyrics[lines] = l;

           lines++;

       }

   }

  

   // function to display n line max

   public void display(int n) {

       for(int i=0; i<n&& i<lines; i++) {

           System.out.println(lyrics[i]);

       }

   }

}

class Main {

  

   public static void main(String[] args) {

      

       // creating Lyrics Object

       Lyrics obj = new Lyrics(10);

       obj.addLine("defe fefewhfe efn4ic d");

       obj.addLine("ituewwndwejr3");

       obj.addLine("sdwl r;oij ce");

       obj.addLine("okok wdwcew");

       obj.addLine("xsxsd feijfildnw");

       obj.addLine("ioliijwd dweqdwd");

      

       obj.display(3);

   }

}

/*

Sample run:

defe fefewhfe efn4ic d

ituewwndwejr3

sdwl r;oij ce

*/