Answer:
The database can detect only system-defined events.
Explanation:
A trigger is like a stored procedure that Oracle Database invokes automatically whenever a specified event occurs.trigger is like a stored procedure that Oracle Database invokes automatically whenever a specified event occurs.
Both triggers and constraints can constrain data input, but they differ significantly.
A constraint applies to both existing and new data. For example, if a database column has a NOT NULL constraint, then its existing data is NOT NULL and no DML statement can violate the NOT NULL constraint.
A trigger applies only to new data. For example, a trigger can prevent a DML statement from inserting a NULL value into a database column, but the column might contain NULL values that were inserted into the column before the trigger was defined or while the trigger was disabled
The Data type is clearly a string because you put it in quotation marks, this tells the computer its a not a integer, but a readable "String"
All console programs have a way to prompt for input.
For C#, the answer is Console.ReadLine().
For C, the answer is a.o. fgets()
For C++, the answer could be cin >>
... and so on...
Not sure what answer you need here.