Question: package com.techelevator; public class Application { / * * * The main entry point in the application * @param args * / public static void
package com.techelevator;
public class Application
The main entry point in the application
@param args
public static void mainString args
Application app new Application;
app.run;
private void run
create some departments
createDepartments;
print each department by name
printDepartments;
create employees
createEmployees;
give Angie a raise, she is doing a great job!
print all employees
printEmployees;
create the TEams project
createTeamsProject;
create the Marketing Landing Page Project
createLandingPageProject;
print each project name and the total number of employees on the project
printProjectsReport;
Create departments and add them to the collection of departments
private void createDepartments
Print out each department in the collection.
private void printDepartments
System.out.println DEPARTMENTS ;
Create employees and add them to the collection of employees
private void createEmployees
Print out each employee in the collection.
private void printEmployees
System.out.println
EMPLOYEES ;
Create the 'TEams' project.
private void createTeamsProject
Create the 'Marketing Landing Page' project.
private void createLandingPageProject
Print out each project in the collection.
private void printProjectsReport
System.out.println
PROJECTS ;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
