DRAG DROP
You have an application that uses paging. Each page displays 10 items from a list.
You need to display the third page. (Develop the solution by selecting and ordering the required code snippets.
You may not need all of the code snippets.)
Select and Place:
Explanation:
Note:
Skip the first two page (first 20 items) then select the next page (next 10 items),
* Use the Take operator to return a given number of elements in a sequence and then skip over the remainder.
Use the Skip operator to skip over a given number of elements in a sequence and then return the remainder.
Same as below
https://www.aiotestking.com/microsoft/you-need-to-display-the-third-page-2/