Once you attempt the question then PrepInsta explanation will be displayed.
In the above-given Query, the "%" (like) operator will be used, which is generally used while searching for a certain pattern in the strings. It represents the single and multiple characters. In this case, it is used with the "Where" clause to select the "dept_name" that contains the Computer Since as its ending string. To understand it more clearly, consider the following syntax:
Syntax
SELECT column1, column2, ...
FROM table_name
WHERE columnN LIKE pattern;