Task 1 (5 marks) Define a class with at least 3 fields, 3 properties and 3 methods. Override the To Stirng function that returns a summary of the properties of your object.
Task 2 (5 marks) Initialize an Array of 10 numbers Initialize an Array of 5 strings Initialize an Array of 5 objects that you created in Task 1 Task 3 (5 marks) Using 3 different Loops types, output each element of the array of 10 numbers Repeat the same process for the array of 5 strings and array of 5 objects *9 loops total* Task 4 (5 marks) Create a struct called Mouse Give the struct three (3) appropriate properties and a one (1) constructor Call the struct using the constructor and not calling the constructor Output each of the properties of both instantiated structs
A team of developers and entrepreneurs are working on the idea of BorrowMyKitty, a new platform to connect cat owners with trusted local people who could share the care of the cat. They are considering several options on how cat owners could connect to potential carers and what the revenue model of the platform could be.
1. Briefly describe your recommendation about the potential operation of BorrowMyKitty using the business model concept.
2. The team has asked you to make three recommendations on ways in which the organisation could use big data and data analytics to enhance the success of the platform.
Given two stacks with their standard operations (pop, push, isEmpty, size), implement a queue with its standard operations (enqueue, dequeue, isEmpty, size).
There should be two versions of the solution.
Version A: The queue should be efficient when enqueuing an item; and Version B: The queue should be efficient when dequeuing an item.