Skip to main content

Chennai Super Kings IPL 2018 Champions Over SunRisers Hyderabad In Final



Shane Watson smashed an unbeaten 117 off just 57 balls to power Chennai Super Kings to a eight-wicket win over SunRisers Hyderabad in the IPL 2018 final at the Wankhede Stadium on Sunday night. This was CSK's third IPL title and came rather easily against SRH -- a team that finished top of the standings after the league stage. The Australian all-rounder started his innings slugglishly with 10 dot balls but upped the ante after the powerplay. Captain Kane Williamson (47) and Yusuf Pathan (45 not out) had helped SRH post a competitive 178 for six but it proved no match for CSK as the MS Dhoni-led team overhauled the target with nine balls to spare.
Watson hit 11 fours and eight sixes during his unbeaten knock but things didn't start well for him as SRH pacer Bhuvneshwar Kumar kept him under wraps for much of the powerplay. 
However, a couple of big hits off the bowling of Sandeep Sharma got the Australian going and there was no looking back for him after that.
CSK's chase had gotten off to a poor start with South African batsman Faf du Plessis falling in the fourth over with the score on 16.
Watson and Raina got together and went about dismantling the SRH bowling in ruthless fashion. The duo strung together a match-winning 117-run stand for the second wicket with SRH bowlers helpess in front of the CSK pair's onslaught.
Not just power hitting, Watson and Raina played some smart cricket by being cautious against SRH's trump card Rashid Khan. There were no risks taken against the Afghan sensation and the leg-spinner returned wicketless, going for 24 runs in his four overs.
Raina fell to Carlos Brathwaite but by that time the damage had been done. Ambati Rayudu (16 not out) added the finishing touches to CSK's win with some lusty blows in the end.
Owing to his whirlwind ton at the Wankhede, Watson became the second player after Wriddhiman Saha to score a century in an IPL final. Saha, playing for Kings XI Punjab, had achieved the feat against Kolkata Knight Riders in the IPL final in 2014.
Earlier, Williamson missed out on yet another fifty in a highly successful season as Sunrisers Hyderabad piled on a challenging score after a slow start.
Williamson led his side from the front once again hitting two sixes and five fours in his innings before Pathan pummelled the opposition bowlers in the death overs. Carlos Brathwaite (21 off 11) came up with the much-needed big hits towards the end to take his team close to 180.
CSK kept a tight rein on the SunRisers Hyderabad batsmen initially while also taking a wicket through a run-out. The first four overs saw only one boundary being hit, a turn to fine leg for four by Dhawan off Lungi Ngidi.
Deepak Chahar, who was bowling well till then, dug in one short to Williamson in the fifth over who smacked it for a six over long leg and then was pulled for a four by the New Zealander.
And when Shardul Thakur too erred in length, he was hoisted over long on by Dhawan for a maximum, taking SRH to 42 for 1 by the end of powerplay.
The second wicket partnership reached the 50-mark when it was snapped by Ravindra Jadeja who bowled Dhawan when the left-handed opener missed a heave on the 25th ball he faced.
The run-rate dropped a bit after his departure and at the half-way mark Sunrisers were 73 for 2.
The promoted Shakib Al Hasan hit the accurate Jadeja for a six and a four to the mid-wicket region after Williamson's leading edge ran away to the boundary so that 17 runs were taken off the left-arm spinner in the 11th over to boost the run rate.
The Sunrisers captain, by far his side's major run-getter who also became the third highest scorer in one IPL season, went back after striking two sixes and five fours to leave his side at 101 for 3.
Yusuf Pathan started in aggressive fashion and put on a useful stand of 32 with Shakib before the latter drove Bravo straight to Raina at extra cover and was caught.
It was later left to Pathan and big-hitting West Indian Brathwaite to give the total a big boost in the death overs as they added 34 runs in the last three overs.

Comments

Popular posts from this blog

Spring Security with JWT for REST API

Spring is considered a trusted framework in the Java ecosystem and is widely used. It’s no longer valid to refer to Spring as a framework, as it’s more of an umbrella term that covers various frameworks. One of these frameworks is Spring Security , which is a powerful and customizable authentication and authorization framework. It is considered the de facto standard for securing Spring-based applications. Despite its popularity, I must admit that when it comes to single-page applications , it’s not simple and straightforward to configure. I suspect the reason is that it started more as an MVC application -oriented framework, where webpage rendering happens on the server-side and communication is session-based. If the back end is based on Java and Spring, it makes sense to use Spring Security for authentication/authorization and configure it for stateless communication. While there are a lot of articles explaining how this is done, for me, it was still frustrating to set it up for the f...

Java Functional Interfaces

  The term   Java functional interface   was introduced in Java 8. A   functional interface   in Java is an interface that contains only a single abstract (unimplemented) method. A functional interface can contain default and static methods which do have an implementation, in addition to the single unimplemented method. Here is a Java functional interface example: public interface MyFunctionalInterface { public void execute(); } The above counts as a functional interface in Java because it only contains a single method, and that method has no implementation. Normally a Java interface does not contain implementations of the methods it declares, but it can contain implementations in default methods, or in static methods. Below is another example of a Java functional interface, with implementations of some of the methods: public interface MyFunctionalInterface2{ public void execute(); public default void print(String text) { System.out.println(t...

Java Logger

In Java, logging is an important feature that helps developers to trace out the errors. Java is the programming language that comes with the logging approach. It provides a Logging API that was introduced in Java 1.4 version. It provides the ability to capture the log file. In this section, we are going to deep dive into the Java Logger API. Also, we will cover logging level, components, Logging handlers or appenders, logging formatters or layouts, Java Logger class, What is logging in Java? In Java, Logging is an API that provides the ability to trace out the errors of the applications. When an application generates the logging call, the Logger records the event in the LogRecord. After that, it sends to the corresponding handlers or appenders. Before sending it to the console or file, the appenders format that log record by using the formatter or layouts. Need for Logging It provides the complete tracing information of the application. It records the critical failure if any occur in ...