Computers and Technology
In 1975, still the early dawn of the computer era, Kodak invented the first digital camera. At that time, Kodak had 85% of the U.S. market share for cameras and 90% market share for film. By the late 1980s, 1-hour film processing shops were delighting customers who hated waiting days to get their photo prints, and Consumer Reports ranked stores using Kodak chemicals and technology as having the best picture quality. Amid this market domination built on a century of chemical-based photography innovations, Kodak failed to successfully pivot from chemicals to computers even after investing over USD 2 billion in digital technology research and development. Kodaks investments were focused on how digital photography could strengthen its traditional photography business, not replace it. Sony, Hewlett-Packard, and other companies embracing digital technology entered the photography industry with a new proposition for consumers while Kodak simply continued to protect its vast investments in chemical technology.Required:A firm takes on an entrepreneurial orientation (EO) when it adopts the processes, practices, and decision-making styles that are associated with an entrepreneur. Use the case study to apply the three dimensions of Entrepreneurial Orientation, namely Innovativeness, Proactiveness, Risk-taking and the Four Types of Innovation model.
JAVA:Create a class named Person that holds the following fields: two String objects for the persons first and last name and a LocalDate object for the persons birthdate.Create a class named Couple that contains two Person objects.Create a class named Wedding for a wedding planner that includes the date of the wedding, the Couple being married, and a String for the location.Provide constructors for each class that accept parameters for each field, and provide get methods for each field. The TestWedding.java program has been provided for you to test the implementations of the Person, Couple, and Wedding classes.-------------------------------------------------------------------------------------------------------------------------------------Couple.javaimport java.time.*;public class Couple {private Person bride;private Person groom;public Couple(Person br, Person gr) {}public Person getBride() {}public Person getGroom() {}}-----------------------------------------------------Person.javaimport java.time.*;public class Person {private String firstName;private String lastName;private LocalDate birthDate;public Person(String first, String last, LocalDate date) {}public String getFirstName() {}public String getLastName() {}public LocalDate getBirthDate() {}}--------------------------------------------------TestWedding.javaimport java.time.*;public class TestWedding {public static void main(String[] args) {LocalDate date1 = LocalDate.of(1986, 12, 14);LocalDate date2 = LocalDate.of(1984, 3, 8);LocalDate date3 = LocalDate.of(1991, 4, 17);LocalDate date4 = LocalDate.of(1992, 2, 14);LocalDate date5 = LocalDate.of(2016, 6, 18);LocalDate date6 = LocalDate.of(2016, 6, 25);Person bride1 = new Person("Kimberly", "Hanson", date1);Person groom1 = new Person("Mark", "Ziller", date2);Person bride2 = new Person("Janna", "Howard", date3);Person groom2 = new Person("Julius", "Nemo", date4);Couple couple1 = new Couple(bride1, groom1);Couple couple2 = new Couple(bride2, groom2);Wedding wedding1 = new Wedding(couple1, date5, "Mayfair Country Club");Wedding wedding2 = new Wedding(couple2, date6, "Oceanview Park");displayWeddingDetails(wedding1);displayWeddingDetails(wedding2);}public static void displayWeddingDetails(Wedding w) {Couple couple = w.getCouple();LocalDate weddingDate = w.getWeddingDate();String location = w.getLocation();Person bride = couple.getBride();Person groom = couple.getGroom();String firstBride = bride.getFirstName();String lastBride = bride.getLastName();LocalDate brideBDate = bride.getBirthDate();String firstGroom = groom.getFirstName();String lastGroom = groom.getLastName();LocalDate groomBDate = groom.getBirthDate();System.out.println("\n" + lastBride + "/" + lastGroom + " Wedding");System.out.println("Date: " + weddingDate + " Location: " +location);System.out.println("Bride: " + firstBride +" " + lastBride + " " + brideBDate);System.out.println("Groom: " + firstGroom +" " + lastGroom + " " + groomBDate);}}------------------------------------------------------Wedding.javaimport java.time.*;public class Wedding {private Couple couple;private LocalDate weddingDate;private String location;public Wedding(Couple c, LocalDate date, String loc) {}public Couple getCouple() {}public LocalDate getWeddingDate() {}public String getLocation() {}}------------------------------------