You are required to implement their system in Python. The company is in the business of providing loans to businesses in the informal section of the economy.
For a borrower to get a loan, he/she needs to submit a hard copy of a completed applica A small high-street micro-finance company wishes to computerize their operations. You are tion form. You are therefore required to develop a Python system which will allow the company to record and store the details on the completed application forms.
The information to be stored include, the fullname of the applicant, the national id, date of birth, application date, loan amount, and purpose of the loan. Required Implement a Python class to model the above scenario. The class should have a constructor to initialise the above instance variables and should have a method to print the details about an application. [20]
Implement an inner class inside the class defined in part (1) above containing a class for a queue data structure with the necessary methods which allow one to sufficiently manipulate queue objects. Your class should use the array data type and not the list datatype. [20]
Modify your code so that you can insert/add and store the completed applications in a queue immediately after submission of an application (creation of an object). [10]
Provide a method in the appropriate class which will sort the applications in ascending order by loan amount using Bubble sort. [10] Provide a method in the appropriate class which will sort the applications in descending order by application date sing Quick sort. [10]
Provide a method in the appropriate class which will allow users to search for an applicant by ID number using BinarySearch. [20]
You are required to store the completed applications in a Binary Search Tree and also find elements in the tree. You are required to make reasonable assumptions where necessary and credit will be given to the most innovative and efficient solution.
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme