You need to create an OData filter expression that returns bools that match the following characteristics:
Published after 1/1/2000
Have “Science” as the first word
Which filter statement should you use?
Select an option, then click Submit answer.
-
○
/books?$filter=PublishDate gt datetime’2000-1-1’ and startswith(Title, ‘Science’)
-
○
/books?$filter=PublishDate greaterthan datetime’2000-1-1’ and startswith(Title, ‘Science’)
-
○
/search?$filter=PublishDate greaterthan datetime’2000-1-1’ and beginswith (Title, ‘Science’)
-
○
/search?$filter=PublishDate gt datetime’2000-1-1’ and beginswith(Title, ‘Science’)