Answer:
Entities are - Students, CourseList, Advisor and CourseSelection.
Explanation:
The database is structure is designed using Crow Foot Database Notation as attached
Answer: Animation Painter.
In Microsoft Powerpoint, the most common method would be to simply animate each bullet point in the entire presentation. The Animation Painter is a tool that has been included to copy all the animations of a single object and apply them to another object selected.
How to use:
- Select the object with the animations already applied to.
- Click on the Animation Painter.
- Select the object that you would like to apply the animations to.
- Done.
Answer:
UPDATE COMPANY
SET COMM=COMM + 500
WHERE SALES> 20000;
Explanation:
The update command is used for alter the record in the database management system in the table .The update command command modify the record on the some condition in the table in the database management system.
Following are syntax for using the update command .
UPDATE table-name
SET column name 1,column name 2 .........
Where condition
- In the given question table -name is "COMPANY" the condition is on the sales column and it update the table only when sales is more than 20000 and set the column COMM by 500.
Answer:
Draw a flowchart that solve the problem of calculating the Area of circle
Pie x r x2
Explanation: