Write a cron entry for the following scenario:-
At 10:30 AM for every Sunday of every 1st month of a
quarter.

Answers were Sorted based on User's Feedback



Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / stephen

30 10 * 1,4,7,10 0

Is This Answer Correct ?    25 Yes 3 No

Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / santhosh

30 10 * 1-12/3 7
this is the correct answer

or

you can use

30 10 * 1,4,7,10 7

(NOTE: For Sunday you can use 0 or 7)

Is This Answer Correct ?    10 Yes 0 No

Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / majeed090

* * * * * command to be executed
- - - - -
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday=0 or 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)

crontab -e for entry.

30 10 * 1,4,7,10 7

Is This Answer Correct ?    3 Yes 1 No

Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / sunny

30 10 0 */3 7

Is This Answer Correct ?    4 Yes 4 No

Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / phani

30 10 0 1/3 *

Is This Answer Correct ?    1 Yes 2 No

Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / harsh

this one is correct

30 10 * */3 0

Is This Answer Correct ?    1 Yes 2 No

Write a cron entry for the following scenario:- At 10:30 AM for every Sunday of every 1st month of ..

Answer / harsh chauhan

30 10 * */3 7

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Linux Commands Interview Questions

What can you type at a command line to determine which shell you are using?

6 Answers   Tech Mahindra,


What command should you use to check your file system?

0 Answers  


What is the difference between cd and cd in linux?

0 Answers  


what is lilo?How it is useful in linux?

3 Answers   HCL, SofTec,


What is the purpose output of cd command?

0 Answers  






if i have one folder say aaa and that folder having 100 files from that 50 files there aaa word is written how to find in which aaa is writen and without opening that file

6 Answers  


What is the use of man command in linux?

0 Answers  


What are whois tools?

0 Answers  


can some one tell me the steps(with commands) to create LVM in RHEL 5????

5 Answers  


Is llvm a virtual machine?

0 Answers  


How cp command works in linux?

0 Answers  


What is a simple command?

0 Answers  


Categories