You have created a task as below
CREATE TASK mytask_minute
WAREHOUSE = COMPUTE_WH
SCHEDULE = '5 MINUTE'
AS
INSERT INTO EMPLOYEE VALUES(1, 'MOHAN');
When you execute the below query, what will be the output SHOW TASKS;
A. Since the task is not activated, it will show the task in a SUSPENDED state
B. It will show the TASK in active state
C. It will show the task in scheduled state
D. Since the task is not activated, it will show nothing