Answer:
A form is closed
A form is resized.
A form is opened
A user presses a key
A user moves the mouse
Explanation:
There are different events in a form, and we can use them in different situations like:
- We can use On Resize to resize our form.
- If we On Load the form will be displayed.
- On Clicked, If there was a click in an object
- On Unload to close the form.
- On Mouse Enter and On Mouse Leave, in this case, the mouse enters or leaves the object.
Answer:
Input, Processing, Storage, Output and Communication devices.
Explanation:
Input devices of computer are like Keyboard, Mouse, Scanner. Output devices of a computer are printers, monitors, and headphones.
There are two storages of computer one of them is REM, which can be lost if computer shutdown/closes. Data stays written on the disk until it's erased or until the storage medium fails (more on that later). An example of a communication device is the microphone.
Answer:
<em>SQL Query</em>
//////////////////////////////////////////////////////////////////////////////////////////////////
select student_name from Student
INNER JOIN Class ON Student.id = Class.student_id
LEFT JOIN Instructor ON Class.instructor_id = Instructor.id
WHERE Instructor.school <> 'Computer Science'
Explanation:
First thing is to select the student_name from <em>Student</em> table.
Next we need to connect with the <em>Class</em> table to get all Students currently taking classes.
Next we need to connect the <em>Class</em> table with the <em>Instructor</em> table, to get all of the Instructors currently teaching class(s).
Finally, we place the Where condition for the acquired instructors to not be from the Computer Science department.