question archive Suppose you enhance the book's Person class in Fig
Subject:Computer SciencePrice: Bought3
Suppose you enhance the book's Person class in Fig. 7.7 by adding
another instance variable, jobDescription, and another method, switchJobs. Complete the following additional switchJobs method that swaps the calling object's jobDescription with the passed-in parameter object's jobDescription. public void switchJobs(Person otherPerson) { } // end switchJobs