Using the following information, determine the net operating…

Using the following information, determine the net operating income (NOI) for the first year of rental operations of the small apartment property using an “above-line” treatment of capital expenditures: Number of apartments, 15; total contract rent (per apartment, per month), $1,500; vacancy and collection losses, 10% of potential gross income (PGI); operating expenses, 35% of effective gross income (EGI); capital expenditures, 10% of effective gross income (EGI); total mortgage payments in first year of rental operations, $106,920.

In this part, you will write the implementation of the metho…

In this part, you will write the implementation of the method below. Your implementation should be consistent with the class you’ve written in a prior step (i.e. only use the field(s) and method(s) that exist in the MySortedList class). You do not need to include any import statements or Javadoc comments in your response. int findInsertionIndex(T element) Finds and returns the integer index where the element can be inserted while keeping the list in sorted order. The sorted order must be ascending (i.e. least-to-greatest). Returns the index of the first occurrence if the element passed in is a duplicate of an existing element within the list. REMEMBER: parameterized type T is bounded to guarantee that the elements implement the compareTo(T) method. When comparing, remember that foo.compareTo(bar) will return: a negative result when foo should be placed before bar a positive result when foo should be placed after bar a result of zero when foo and bar are equal HINT: it’s strongly recommended this method is implemented before the add(T) method Make sure to select the ‘Preformatted’ style from the dropdown so your code is formatted clearly. DO NOT USE THE TAB KEY WHEN WRITING CODE AS YOU MAY ACCIDENTALLY SUBMIT YOUR EXAM. USE THE SPACE BAR INSTEAD.