Q1 Single choice Flag Which of the following statements correctly illustrates using LINQ to process data in a UiPath project? A Utilizing LINQ to find the total sum of integers in a list by writing listOfIntegers.Sum(Function(x) x). B Applying LINQ to filter out emails in a list of strings containing multiple email addresses by writing listOfStrings.FilterEmails().ToList(). C Employing LINQ to convert DataTable to JSON format by writing dataTable.ToJSON(). D Using LINQ to identify the longest string in a list of strings by writing listOfStrings.Max(Function(x) x.Length()). Correct answer