What executes on a time activated basis according to a schedule?
A. Stored program
B. Events
C. Triggers
D. Stored procedures
Answer: Option B
Solution (By Examveda Team)
This question is about something in MySQL that runs automatically at certain times. Let's break down the options:Option A: Stored program: A stored program is like a mini-program you can store inside your database to do specific tasks. They are not automatically scheduled.
Option B: Events: Events are special types of stored programs that run on a schedule you set. They are designed to happen at specific times.
Option C: Triggers: Triggers are like little robots that watch for certain things to happen in your database. They run when those things occur but not on a schedule.
Option D: Stored procedures: Stored procedures are similar to stored programs. They don't have a built-in schedule.
So the answer is Option B: Events.
Related Questions on MySQL Miscellaneous
How is communication established with MySQL?
A. SQL
B. Network calls
C. A programming language like C++
D. APIs
Which type of database management system is MySQL?
A. Object-oriented
B. Hierarchical
C. Relational
D. Network
Join The Discussion