Multiple choice technology programming languages In which scenario ,tail is being used for real time log file monitoring? tail -r logfile tail -n 5 logfile tail -f logfile tail -x logfile Reveal answer Fill a bubble to check yourself C Correct answer Explanation The tail -f command follows the file growth in real-time, making it ideal for monitoring active log files. The other options, like -n 5 (displays only the last 5 lines once) or -r (reverses output), do not support continuous, real-time updates.