Posts

IND vs ENG LIVE Cricket Score, 2nd Test Day 3: Harry Brook and Jamie Smith resume after lunch England 297/5 vs India in Edgbaston

Image
  IND vs ENG 2nd Test Day 3 LIVE Cricket Score, India vs England Test Match Today Live Score Updates: Harry Brook and Jamie Smith resume for England 30 minutes into Lunch and take England to 285/5 against India in Edgbaston India India vs England Live Cricket Score, ENG vs IND 2nd Test Day 3 Updates  Harry Brook and Jamie Smith resume for England after Lunch on Day 3 in Edgbaston on Friday. Though Mohammed Siraj started the session with a couple of quick wickets in Joe Root and Harry Brook, Smith and Brook’s counterpunch pulled England back in the game. In addition to Akash Deep, Mohammed Siraj  picked up a wicket of Zack Crawley, who has been in a poor run of form. Earlier in the day Indian skipper scored a mammoth 269-run innings, which helped India to pile on the runs. Supporting Gill where  Ravindra Jadeja , and Yashasvi Jaiswal, who chipped in with 80s each. Shoaib Bashir was the pick of the bowlers for England with three wickets. England have a 1-0 lead in...

India in jeopardy inbetween rain breaks

Image
  Cummins bagged Pant for the third time in the series India found themselves in the doldrums despite rains reducing play to just 30.2 overs over the first two sessions of the third day's play of the Brisbane Test. At the Tea interval, which was taken after yet another spell of showers, the visitors were tottering at 48 for 4 in response to Australia's first-innings total of 445. India's batters weren't helped by the stop-start nature of the day's play that allowed Australia's seamers to rest and return fresh after each interval but Mitchell Starc, Josh Hazlewood, and Pat Cummins were also able to create more jeopardy out of the Gabba surface owing to their higher release points compared to the Indian quicks. That said, India shot themselves in the foot with some of their shot selection. While Yashasvi Jaiswal fell the second ball of the innings after flicking a Starc delivery straight to the square leg, Shubman Gill and Virat Kohli were done in attempting boomi...

Top-order failure leaves India in the doldrums

Image
  Kohli was out nicking off once again Mitchell Starc and Josh Hazlewood left India in disarray on the third morning of the Brisbane Test after Australia pushed their total to 445. In a stop-start session affected by frequent drizzles, the visitors were reduced to 22 for 3 with Yashasvi Jaiswal, Shubman Gill, and Virat Kohli sent back to the sheds for single-digit scores. After a third spell of rain delayed the start of India's first innings, Starc accounted for Jaiswal again, this time with his second delivery. The mode of the dismissal though might have yet to be planned for as India's young southpaw flicked a full ball straight to the fielder placed in front of the square. Mitchell Marsh then pulled off a superb catch at Gully as Gill looked to drive Starc without quite getting his balance right while moving forward. Kohli suffered near misses in his short stay as he was beaten on the drive and then hurried by a short ball. His 16-ball stay ended in a rather familiar manne...

Team India Arrival Live Updates: Team India Reach ITC Maurya, To Meet PM Modi Next

Image
  LIVE: T20 World Cup-winning Indian team to land in New Delhi on Thursday Team India Arrival Live Updates: Team India has reached IT Maurya hotel after landing at the Delhi airport on Thursday morning. Plenty of fans have gathered outside the airport to get a glimpse of Rohit Sharma's champions. The hotel staff has arranged a huge welcome for the World Cup champions, which include a special cake and some welcome drinks. The Indian squad will next meet PM Narendra Modi at 11 am at his residence and later go back to the hotel. The squad is expected to leave for Mumbai at 4 pm on Thursday evening. The team will later take part in an open bus road show followed by a felicitation ceremony at the Wankhede Stadium in Mumbai.

Female Coding Pioneer

Ada Lovelace, the first programmer and a visionary mathematician, was chiefly known for her work on Charles Babbage's proposed mechanical general-purpose computer, the Analytical Engine. She was fond of sequences. During her studies she came across an infinite sequence that was generated using the following algorithm, starting with an empty sequence. Starting from step number 1, in step number  i,  the integer  i  is appended to the sequence exactly  k  times where  k  is equal to the number of set bits in  i. Given an array  query  of  n  integers,   for each query, find the value at the given index of the array assuming indexing starts at 0 .  Report an array of  n  integers where the  x th   integer represents the answer to the  x th  query. Example Given, n = 2 and query = [4, 10], the sequence is generated as follows. Step Number Bina...

HackTree

Image
 You are given a tree with n nodes. Each node has a value assigned with it. The cost of a path is defined as the summation of all the values assigned to nodes that belong to the path. The root of the tree is node number 1. Cost of path example The cost of the path 6 -> 5 -> 3 -> 1 in the above tree is 42 + 31 + 20 + 10 = 103. A Vertical Path in a tree is the path that is going up towards the root of the tree. It is not necessary for the path to end at the root. Given a tree with n nodes and an integer k . Find the number of vertical paths such that the (cost of the path) % k = 0 where % represents the modulo operation. Note: The modulo operation returns the remainder of a division after one number is divided by another. For example - 5 % 2 = 1. Example k = 2 tree = There are a total of 8 vertical paths: 1 2 4 2->1 4->1 3 3->4 3->4->1 But only (2 -> 1), (4 -> 1),...

Data Mining Week-7 | NPTEL

Image
ANSWERS  1. a 2. d 3. a 4. d 5. a 6. b 7. d 8. a 9. b 10. c Week 7 : Assignment 7 Due date: 2023-03-15, 23:59 IST. Assignment not submitted 1 point Which of the following statement is NOT true about clustering?   a. It is a supervised learning technique   b. It is an unsupervised learning technique   c. It is also known as exploratory data analysis   d. It groups data into homogeneous groups 1 point Which of the following clustering technique start with the points as individual clusters and, at each step, merge the closest pair of clusters   a. K-Means clustering   b. DBSCAN   c. Divisive clustering   d. Agglomerative clustering 1 point DBSCAN is a___________ algorithm   a. Partitional clustering   b. Hierarchical clustering   c. Fuzzy clustering   d. Complete clustering 1 point The Euclidean distance matrix between four 2-dimensional points, p1, p2, p3, and p4, is shown below. A possible set of co-ordinate values of these...