DRAG DROP (Drag and Drop is not supported)A company uses Dynamics 365 Finance.You create the following tables:You need to configure the system to meet the requirements.Which delete actions should you use? To answer, drag the appropriate delete action types to the correct scenarios. Each delete action may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.NOTE: Each correct selection is worth one point.
A. lass BigCar extends Car { void new(real _weight) { weight = _weight; } public real getweight() { return weight; }}
B. lass BigCar implements Car { void new(real _weight) { weight = _weight; } public real getweight() { return weight; }}
C. lass BigCar extends car { public real getWeight() { return weight; }}
D. lass BigCar : car { void new(real _weight) { weight = _weight; } public real getweight() { return weight; }}