Hello Programmers, In this post, you will know how to solve the ‘Awk’ 3 HackerRank Solution. This problem is a part of the HackerRank Linux Shell Series.‘Awk’ 3 HackerRank SolutionsOne more thing to add, don’t directly look for the solutions, first try to solve the problems of Hackerrank by yourself. If you find any difficulty after trying several times, then you can look for solutions.‘Awk’ 3 HackerRank SolutionProblemAn Introduction to ‘awk’There are a lot of quick tricks which may be accomplished with the ‘awk’ interpreter. Among other things, awk may be used for a lot of text-munging and data-processing tasks which require some quick scripting work.TaskYou are provided a file with four space-separated columns containing the scores of students in three subjects. The first column, contains a single character (A-Z) – the identifier of the student. The next three columns have three numbers (each between 0 and 100, both inclusive) which are the scores of the students in English, Mathematics and Science respectively.Your task is to identify the performance grade for each student. If the average of the three scores is 80 or more, the grade is ‘A’. If the average is 60 or above, but less than 80, the grade is ‘B’. If the average is 50 or above, but less than 60, the grade is ‘C’. Otherwise the grade is ‘FAIL’.Input FormatThere will be no more than 10 rows of data.Each line will be in the format:[Identifier][Score in English][Score in Math][Score in Science]Output FormatFor each row of data, append a space, a colon, followed by another space, and the grade. Observe the format showed in the sample output.Sample InputA 25 27 50B 35 37 75C 75 78 80D 99 88 76Sample OutputA 25 27 50 : FAILB 35 37 75 : FAILC 75 78 80 : BD 99 88 76 : AExplanationA scored an average less than 50 => FAIL Same for B C scored an average between 60 and 80 => BD scored an average between 80 and 90 => A‘Awk’ 3 HackerRank Solutionawk '{ total=$2+$3+$4; avg=total/3; print $0 " : " (avg > 50 ? avg > 60 ? avg > 80 ? "A" : "B" : "C" : "FAIL"); }'Note: This problem (‘Awk’ – 3) is generated by HackerRank but the Solution is Provided by BrokenProgrammers. This tutorial is only for Educational and Learning purposes.Next: Lonely Integer – Bash! HackerRank Solution Post navigation‘Grep’ #1 HackerRank Solution Lonely Integer – Bash! HackerRank Solution