(Choose 1 answer)
var q = from A in N
Which of the following statements is correct considering the code below?string] N = new string[] { "Ahmad", "Mahmoud", "Sami", "Rama", "Reem", "Dana" };
orderby A descending where A.Length > 5
select A;
foreach (string S in N){}
Console.Write($"{S}");
A. The LINQ query selects the strings that have more than 5 characters and orders them in descending order.
B. This code is not correct because we did not determine the data type of the variable A
C. This code is not correct since "orderby" comes before "where", the "orderby" clause must come after the "where" clause.
D. The code is incorrect and it has any compile-time errors.
Exit 36