QUESTION 1 You should have already downloaded a zip…
QUESTION 1 You should have already downloaded a zip file, and unzipped it, and renamed the folder. Inside the ‘2021 gr10 sba003a yourname’ folder, is an empty folder called Question1. Create a new Delphi project with one form. Save ALL the files in the Question1 folder. 1.1) Add a panel to your form. The caption of the panel should be your name, and should appear at at the top left of the panel. Make the colour of this panel skyBlue. This panel will group all the other components. Rename it appropriately. (5) 1.2) Add 4 labels, 2 edits and a button to the panel. (If you drag them, they should not go out of the panel.) (7) 1.3) Set the font of the label lblNoTeams to Trebuchet MS, size 24 (2) 1.4) Set the captions, rename the components and move them around so that they look like the provided picture. Right click on the button below to open the picture in a new tab. (8) 1.5) Create an onClick procedure for the ‘Calculate no of teams’ button. Each team sits at 1 table. Ensure that both values in the edits are valid integers. If they are not, you should show a friendly message to tell the user to enter a valid number. If both values are valid, calculate how many tables (i.e teams) you need for the given number of participants, given the number of people who can sit at a table. Remember you cannot have part of a table. Display the number of tables required in the lblNoTeams label. (22) 1.6) Save ALL your files inside the Question1 folder. TOTAL FOR QUESTION 1