Question 91: Within the data set Furnitur.Bookcase, the variable Finish contains values such as ash/cherry/teak/matte-black.

 Which of the following creates a subset of the data in which the values of Finish contain the string walnut? Make the search for the string case-insensitive.

  1. data work.bookcase;

 set furnitur.bookcase;

 if index(finish,walnut) = 0;

 run;

  1. Get all Questions and Answer from here
  2. You need to have paid subscription to access all questions
  3. Thanks for considering Python Certification Material

 Correct Answer : 4

 Use the INDEX function in a subsetting IF statement, enclosing the character string in quotation marks. Only those observations in which the function locates the string and returns a

You can access to full explanation to question and answer from this page.