What is the difference between the Take and Skip clauses?
The Take clause returns a specified number of elements. For instance, you can use the Take clause to return two values from an array of numbers. The Skip clause skips the specified number of elements in the query and returns the rest. For instance, you can use the Skip clause to skip the first four strings in an array of strings and return the remaining array of string.