College
On August 31, the balance sheet of La Brava Veterinary Clinic showed Cash $9,000, Accounts Receivable $1,700, Supplies $600, Equipment $6,000, Accounts Payable $3,600, Common Stock $13,000, and Retained Earnings $700. During September, the following transactions occurred;a. Paid $2,900 cash for accounts payable due.b. Collected $1,300 of accounts receivable.c. Purchased additional equipment for $2,100, paying $800 in cash and the balance on account.d. Recognized revenue of $7,300, of which $2,500 is collected in cash and the balance is due in October.e. Declared and paid a $400 cash dividend.f. Paid salaries $1,700, rent for September $900, and advertising expense $200.g. Incurred utilities expense for month on account $170.h. Received $10,000 from Capital Bank on a 6-month note payable.InstructionsPrepare a tabular analysis of the September transactions beginning with August 31 balances. The column headings should be as follows: Cash + Accounts Receivable + Supplies + Equipment = Notes Payable + Accounts Payable + Common Stock + Retained Earnings + Revenues Expenses Dividends.Prepare an income statement for September, a retained earnings statement for September, and a balance sheet at September 30.
Using Java..Implement the Speaker interface:public interface Speaker {public void speak();public void announce(String str);}Then, create three classes that implement Speaker in various ways:SpeakerOfTheHouse: speak method prints "I am Speaker of the House.", andthe announce method takes the name of a bill in the form of a stringand prints it in the sentence "The [bill] has passed!"SportsAnnouncer: speak method prints "Goal!", and the announce methodtakes the name of a team in the form of a string and prints the sentence"The [team] have scored a goal!"Actor: speak method prints "I've been nominated for three AcademyAwards.", and the announce method takes the name of a movie in the formof a string and prints the sentence, "I'm currently staring in [movie]."Create a driver class , and in the main method , prompt the user to enter threeStrings -- the name of a bill, the name of a sports team, and the name of a movie.Then, create an object from each of the classes described above and call the speakand announce methods of each object , using the strings provided by the user.